Function CSPTimer::GetMicroSecsDouble()
Description:
Retrieves the amount of time ellapsed in microseconds since the last time that the Start() was called.
 |
Prototype:
double GetMicroSecsDouble() const;
Arguments:
No arguments (void).
Return value:
Returns a double precision number that contains the ellapsed amount of time in microseconds.
Examples:
CSPTimer t; t.Start();
// Your time consuming code here
double dblTimeEllapsed = t.GetMicroSecsDouble();
See also:
member functions GetMicroSecs(), GetMilliSecs(), GetMilliSecsDouble(), Start()
|
|