SLProject  4.2.000
A platform independent 3D computer graphics framework for desktop OS, Android, iOS and online in web browsers
GlobalTimer.h
Go to the documentation of this file.
1 /**
2  * \file GlobalTimer.h
3  * \authors Michael Goettlicher
4  * \date March 2018
5  * \authors Marcus Hudritsch
6  * \copyright http://opensource.org/licenses/GPL-3.0
7  * \remarks Please use clangformat to format the code. See more code style on
8  * https://github.com/cpvrlab/SLProject4/wiki/SLProject-Coding-Style
9 */
10 
11 #ifndef GLOBAL_TIMER_H
12 #define GLOBAL_TIMER_H
13 
14 #include "HighResTimer.h"
15 
17 {
18 public:
19  static void timerStart();
20  static float timeS();
21  static float timeMS();
22 
23 private:
25 };
26 
27 #endif // GLOBAL_TIMER_H
static HighResTimer _timer
Definition: GlobalTimer.h:24
static void timerStart()
Definition: GlobalTimer.cpp:15
static float timeS()
Definition: GlobalTimer.cpp:20
static float timeMS()
Definition: GlobalTimer.cpp:25
High Resolution Timer class using C++11.
Definition: HighResTimer.h:31