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