]> git.tdb.fi Git - libs/core.git/commitdiff
Rename time/types.h to rawtime.h
authorMikko Rasa <tdb@tdb.fi>
Sat, 28 May 2011 12:25:46 +0000 (15:25 +0300)
committerMikko Rasa <tdb@tdb.fi>
Sat, 28 May 2011 12:25:46 +0000 (15:25 +0300)
source/time/datetime.h
source/time/rawtime.h [new file with mode: 0644]
source/time/timedelta.h
source/time/timestamp.h
source/time/types.h [deleted file]

index 7c2a349a869a794ff1876ec3029343d38dc48963..dcd0b9a7f8f4c213030678acd7b3bc9b3d247708 100644 (file)
@@ -10,7 +10,7 @@ Distributed under the LGPL
 
 #include <string>
 #include "timezone.h"
-#include "types.h"
+#include "rawtime.h"
 
 namespace Msp {
 namespace Time {
diff --git a/source/time/rawtime.h b/source/time/rawtime.h
new file mode 100644 (file)
index 0000000..afa3c94
--- /dev/null
@@ -0,0 +1,27 @@
+/* $Id$
+
+This file is part of libmspcore     
+Copyright © 2006,2008  Mikko Rasa, Mikkosoft Productions
+Distributed under the LGPL
+*/
+
+#ifndef MSP_TIME_RAWTIME_H_
+#define MSP_TIME_RAWTIME_H_
+
+#ifndef WIN32
+#include <stdint.h>
+#endif
+
+namespace Msp {
+namespace Time {
+
+#ifdef WIN32
+typedef __int64 RawTime;
+#else
+typedef int64_t RawTime;
+#endif
+
+} // namespace Time
+} // namespace Msp
+
+#endif
index 631c4b0554a6549bcc79b810854a4167990cd72e..0a9ddd972a0646ea441ce96f2b6a84d18abc617f 100644 (file)
@@ -11,7 +11,7 @@ Distributed under the LGPL
 #include <time.h>
 #include <sys/time.h>
 #include <msp/strings/lexicalcast.h>
-#include "types.h"
+#include "rawtime.h"
 
 namespace Msp {
 namespace Time {
index 64309ced1611c1482f3a0034af15985bd805a71f..5dcb0763dbdf3fd8cd31c069057a6a283372cb73 100644 (file)
@@ -9,7 +9,7 @@ Distributed under the LGPL
 #define MSP_TIME_TIMESTAMP_H_
 
 #include "timedelta.h"
-#include "types.h"
+#include "rawtime.h"
 
 namespace Msp {
 namespace Time {
diff --git a/source/time/types.h b/source/time/types.h
deleted file mode 100644 (file)
index 89c7405..0000000
+++ /dev/null
@@ -1,27 +0,0 @@
-/* $Id$
-
-This file is part of libmspcore     
-Copyright © 2006,2008  Mikko Rasa, Mikkosoft Productions
-Distributed under the LGPL
-*/
-
-#ifndef MSP_TIME_TYPES_H_
-#define MSP_TIME_TYPES_H_
-
-#ifndef WIN32
-#include <stdint.h>
-#endif
-
-namespace Msp {
-namespace Time {
-
-#ifdef WIN32
-typedef __int64 RawTime;
-#else
-typedef int64_t RawTime;
-#endif
-
-} // namespace Time
-} // namespace Msp
-
-#endif