summaryrefslogtreecommitdiff
path: root/utils/Time.h
diff options
context:
space:
mode:
authorsc2000-11-28 14:19:35 +0000
committersc2000-11-28 14:19:35 +0000
commit325530e630c68c7c10a2f4339f5b43434fcd0329 (patch)
tree8e655f6002598176ed0e9e5e0ba3bcb0971c434d /utils/Time.h
parentb8af7905fd61ce5cb2c94da78ccc9e051f9ceddc (diff)
downloadivy-league-325530e630c68c7c10a2f4339f5b43434fcd0329.zip
ivy-league-325530e630c68c7c10a2f4339f5b43434fcd0329.tar.gz
ivy-league-325530e630c68c7c10a2f4339f5b43434fcd0329.tar.bz2
ivy-league-325530e630c68c7c10a2f4339f5b43434fcd0329.tar.xz
Incorporation into IvyLeague
Ccu -> Ivl ccu -> ivl Smart pointers disappear (too dangerous) Imakefile disappears (Makefile now) An empty cplus_bugs.h has been created locally
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;
};