summaryrefslogtreecommitdiff
path: root/utils/Time.h
diff options
context:
space:
mode:
authorchatty1992-12-15 10:55:33 +0000
committerchatty1992-12-15 10:55:33 +0000
commit3a4838bed13b767132cbdf06364b2658da6cc356 (patch)
treef6d7b33264c4634d069409ba3169126823ac4090 /utils/Time.h
parent23abb4b87c7e40ed259dd02f653516f60e55ade4 (diff)
downloadivy-league-3a4838bed13b767132cbdf06364b2658da6cc356.zip
ivy-league-3a4838bed13b767132cbdf06364b2658da6cc356.tar.gz
ivy-league-3a4838bed13b767132cbdf06364b2658da6cc356.tar.bz2
ivy-league-3a4838bed13b767132cbdf06364b2658da6cc356.tar.xz
Initial revision
Diffstat (limited to 'utils/Time.h')
-rw-r--r--utils/Time.h41
1 files changed, 41 insertions, 0 deletions
diff --git a/utils/Time.h b/utils/Time.h
new file mode 100644
index 0000000..998a23c
--- /dev/null
+++ b/utils/Time.h
@@ -0,0 +1,41 @@
+/*
+ * CENA C++ Utilities
+ *
+ * by Stephane Chatty
+ *
+ * Copyright 1992
+ * Centre d'Etudes de la Navigation Aerienne (CENA)
+ *
+ * time management
+ *
+ * $Id$
+ * $CurLog$
+ */
+
+#ifndef Time_H_
+#define Time_H_
+
+#include "cplus_bugs.h"
+
+typedef long Millisecond;
+
+class CcuTimeStamp {
+protected:
+ Millisecond Value;
+public:
+ CcuTimeStamp ();
+inline operator Millisecond () const { return Value; }
+};
+
+
+class CcuTime {
+protected:
+ Millisecond Offset;
+public:
+ CcuTime (Millisecond = 0);
+ CcuTime& operator = (Millisecond);
+ operator Millisecond () const;
+};
+
+#endif /* Time_H_ */
+