Get the elapsed time in seconds.
| 261 | |
| 262 | /// Get the elapsed time in seconds. |
| 263 | double GetElapsedTime() const |
| 264 | { |
| 265 | return (static_cast<double>(clock()) - m_dfStart)/CLOCKS_PER_SEC; |
| 266 | } |
| 267 | |
| 268 | private: |
| 269 | double m_dfStart; ///< elapsed CPU time for process (start of measurement) |
nothing calls this directly
no outgoing calls
no test coverage detected