summaryrefslogtreecommitdiff
path: root/src/time_utils.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/time_utils.hpp')
-rw-r--r--src/time_utils.hpp53
1 files changed, 0 insertions, 53 deletions
diff --git a/src/time_utils.hpp b/src/time_utils.hpp
deleted file mode 100644
index f8f2eb3..0000000
--- a/src/time_utils.hpp
+++ /dev/null
@@ -1,53 +0,0 @@
-#ifndef TIME_UTILS_HPP
-#define TIME_UTILS_HPP
-
-/**
- * A representation of time.
- */
-class Time
-{
-public:
- /**
- * A representation of time.
- *
- * @param time_micros Time in microseconds
- */
- Time(unsigned long time_micros);
-
- /**
- * Updates the time to the current time.
- */
- void update();
-
- /**
- * Returns the difference between two points in time.
- *
- * @param prev_time A previous point in time
- */
- Time diff(Time prev_time);
-
- /**
- * Returns the time in seconds.
- */
- float secs();
-
- /**
- * Returns the time in milliseconds.
- */
- unsigned long millisecs();
-
- /**
- * Returns the time in microseconds.
- */
- unsigned long microsecs();
-
-private:
- unsigned long _time_micros;
-};
-
-/**
- * Returns a time object for the time since the program started.
- */
-Time time_now();
-
-#endif