]> git.tdb.fi Git - libs/core.git/blobdiff - source/time/timestamp.h
Rename time/types.h to rawtime.h
[libs/core.git] / source / time / timestamp.h
index db3587a253e915787aa6f643e80d02124b6f49cc..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 {
@@ -44,7 +44,7 @@ public:
        */
        RawTime raw() const { return usec; }
 
-       time_t to_unixtime() { return usec/1000000LL; }
+       time_t to_unixtime() const { return usec/1000000LL; }
 
        TimeStamp operator+(const TimeDelta &t) const  { return TimeStamp(usec+t.raw()); }
        TimeStamp &operator+=(const TimeDelta &t)      { usec+=t.raw(); return *this; }