summaryrefslogtreecommitdiff
path: root/utils/Time.h
diff options
context:
space:
mode:
Diffstat (limited to 'utils/Time.h')
-rw-r--r--utils/Time.h12
1 files changed, 5 insertions, 7 deletions
diff --git a/utils/Time.h b/utils/Time.h
index 19b0648..a56615a 100644
--- a/utils/Time.h
+++ b/utils/Time.h
@@ -15,27 +15,25 @@
#ifndef Time_H_
#define Time_H_
-
-
#include "cplus_bugs.h"
typedef long Millisecond;
-class CcuTimeStamp {
+class IvlTimeStamp {
protected:
Millisecond Value;
public:
- CcuTimeStamp ();
+ IvlTimeStamp ();
inline operator Millisecond () const { return Value; }
const char* AsString () const;
};
-class CcuTime {
+class IvlTime {
protected:
Millisecond Offset;
public:
- CcuTime (Millisecond = 0);
- CcuTime& operator = (Millisecond);
+ IvlTime (Millisecond = 0);
+ IvlTime& operator = (Millisecond);
operator Millisecond () const;
};