slope 0.29.0
Loading...
Searching...
No Matches
slope::Timer Class Reference

Timer class for measuring elapsed time with high resolution. More...

#include <timer.h>

Public Member Functions

void start ()
 Starts the timer by recording the current time point.
 
void pause ()
 Pauses the timer.
 
void resume ()
 Resumes the timer after a pause.
 
double elapsed () const
 Returns the elapsed time in seconds since start() was called.
 

Detailed Description

Timer class for measuring elapsed time with high resolution.

Uses std::chrono::high_resolution_clock to provide precise timing measurements.

Definition at line 18 of file timer.h.

Member Function Documentation

◆ elapsed()

double slope::Timer::elapsed ( ) const

Returns the elapsed time in seconds since start() was called.

Returns
double Time elapsed in seconds with high precision

Definition at line 34 of file timer.cpp.

◆ pause()

void slope::Timer::pause ( )

Pauses the timer.

Definition at line 14 of file timer.cpp.

◆ resume()

void slope::Timer::resume ( )

Resumes the timer after a pause.

Definition at line 25 of file timer.cpp.

◆ start()

void slope::Timer::start ( )

Starts the timer by recording the current time point.

Definition at line 6 of file timer.cpp.


The documentation for this class was generated from the following files: