]> git.tdb.fi Git - libs/core.git/blobdiff - source/time/types.h
Rename time/types.h to rawtime.h
[libs/core.git] / source / time / types.h
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