OpenShot Audio Library | OpenShotAudio 0.3.2
|
#include <juce_PerformanceCounter.h>
Public Member Functions | |
ScopedTimeMeasurement (double &resultInSeconds) noexcept | |
Simple RAII class for measuring the time spent in a scope.
Example:
{ double timeSec;
{ ScopedTimeMeasurement m (timeSec); doSomething(); }
Logger::writeToLog ("doSomething() took " + String (timeSec) + "seconds"); }
resultInSeconds | The result of the measurement will be stored in this variable. |
Definition at line 143 of file juce_PerformanceCounter.h.
|
inlinenoexcept |
Definition at line 146 of file juce_PerformanceCounter.h.
|
inline |
Definition at line 152 of file juce_PerformanceCounter.h.