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