Skip to content
/ StopWatch Public

This is a very basic C++11 stopwatch implementation using <chrono>

Notifications You must be signed in to change notification settings

st3w/StopWatch

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 

Repository files navigation

Usage

StopWatch s;
/* Timed stuff here */
s.tick();
/* Other stuff */
float dt = s.getTimeElapsed();

or

StopWatch s;
/* Other stuff */
s.tick();
/* Timed stuff here */
s.tick();
/* Other stuff */
float dt = s.getTimeElapsed();

About

This is a very basic C++11 stopwatch implementation using <chrono>

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Contributors 3

  •  
  •  
  •  

Languages