#include <string>
#include "timezone.h"
-#include "types.h"
+#include "rawtime.h"
namespace Msp {
namespace Time {
--- /dev/null
+/* $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
#include <time.h>
#include <sys/time.h>
#include <msp/strings/lexicalcast.h>
-#include "types.h"
+#include "rawtime.h"
namespace Msp {
namespace Time {
#define MSP_TIME_TIMESTAMP_H_
#include "timedelta.h"
-#include "types.h"
+#include "rawtime.h"
namespace Msp {
namespace Time {
+++ /dev/null
-/* $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