aboutsummaryrefslogtreecommitdiffstats
path: root/src/base/time.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/base/time.hpp')
-rw-r--r--src/base/time.hpp23
1 files changed, 0 insertions, 23 deletions
diff --git a/src/base/time.hpp b/src/base/time.hpp
index ebf987a1..229ac3e1 100644
--- a/src/base/time.hpp
+++ b/src/base/time.hpp
@@ -25,8 +25,6 @@
#ifndef TIME_HPP
#define TIME_HPP
-#include <stdint.h>
-
namespace usdx
{
class Time
@@ -35,27 +33,6 @@ namespace usdx
Time(void);
float get_time();
};
-
-
- class RelativeTimer
- {
- private:
- // system-clock reference time for calculation of CurrentTime
- uint64_t absolute_time;
- float relative_time_offset;
- bool paused;
- bool trigger_mode;
-
- public:
- RelativeTimer(bool trigger_mode = false);
- void pause(void);
- void resume(void);
- float get_time(void);
- float get_and_reset_time(void);
- void set_time(float time, bool trigger = true);
- void reset(void);
- };
-
};
#endif