#include <openbabel/obutil.h>
Public Member Functions | |
void | Start () |
double | Lap () |
double | Elapsed () |
The OBStopwatch class makes timing the execution of blocks of code to microsecond accuracy very simple. The class effectively has two functions, Start() and Elapsed(). The usage of the OBStopwatch class is demonstrated by the following code:
OBStopwatch sw; sw.Start(); //insert code here cout << "Elapsed time = " << sw.Elapsed() << endl;
void Start | ( | ) | [inline] |
Mark the start of "stopwatch" timing.
double Lap | ( | ) | [inline] |
double Elapsed | ( | ) | [inline] |