X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2Ftime%2Ftimestamp.h;h=50813057fa1492007eac716e80a857fd3fc615fe;hb=HEAD;hp=2a5c4e1b73bb85df7b9dc9bd824cdbdf46bc8632;hpb=99b9121e2158603372c7313400283b622e6754d8;p=libs%2Fcore.git diff --git a/source/time/timestamp.h b/source/time/timestamp.h index 2a5c4e1..5081305 100644 --- a/source/time/timestamp.h +++ b/source/time/timestamp.h @@ -1,6 +1,7 @@ #ifndef MSP_TIME_TIMESTAMP_H_ #define MSP_TIME_TIMESTAMP_H_ +#include #include "timedelta.h" #include "rawtime.h" @@ -13,7 +14,7 @@ function. For representing user-specified times, use the DateTime class. */ -class TimeStamp +class MSPCORE_API TimeStamp { private: RawTime usec = 0; @@ -46,7 +47,7 @@ public: bool operator==(const TimeStamp &t) const { return usec==t.usec; } bool operator!=(const TimeStamp &t) const { return usec!=t.usec; } - operator const void *() const { return usec>0 ? this : 0; } + explicit operator bool() const { return usec>0; } static TimeStamp from_unixtime(time_t t) { return TimeStamp(t*1000000LL); } };