X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2Ftime%2Ftimestamp.h;h=5dcb0763dbdf3fd8cd31c069057a6a283372cb73;hb=1e54e9f4b8cd32db5c224f971207aedee8bbe3dd;hp=db3587a253e915787aa6f643e80d02124b6f49cc;hpb=5889d53f8f073ff0e1e1ebbd786abecd8352a7b3;p=libs%2Fcore.git diff --git a/source/time/timestamp.h b/source/time/timestamp.h index db3587a..5dcb076 100644 --- a/source/time/timestamp.h +++ b/source/time/timestamp.h @@ -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; }