X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2Ftime%2Ftimedelta.h;h=97c8cac03adf5020fb8e168d11d89c37fb653997;hb=3d80163d0e1f4bacd4c4033f92819e4ef2605a71;hp=5c5b633abdc9a3d233977df0dcf27e64fe81f5ed;hpb=fe77fc6b869a71bf94d501a0762579f4ddbc5094;p=libs%2Fcore.git diff --git a/source/time/timedelta.h b/source/time/timedelta.h index 5c5b633..97c8cac 100644 --- a/source/time/timedelta.h +++ b/source/time/timedelta.h @@ -9,6 +9,7 @@ Distributed under the LGPL #include #include #include +#include "types.h" namespace Msp { namespace Time { @@ -29,13 +30,13 @@ public: serialization together with the raw() function. For creating TimeDeltas with a specific length, see units.h. */ - explicit TimeDelta(int64_t u): usec(u) { } + explicit TimeDelta(RawTime u): usec(u) { } /** Returns the raw number stored inside the TimeDelta. This should only be used for serialization and the result should not be interpreted in any way. */ - int64_t raw() const { return usec; } + RawTime raw() const { return usec; } #ifndef WIN32 /** @@ -51,16 +52,16 @@ public: TimeDelta &operator-=(const TimeDelta &t) { usec-=t.usec; return *this; } template - TimeDelta operator*(T a) const { return TimeDelta((int64_t)(usec*a)); } + TimeDelta operator*(T a) const { return TimeDelta(int64_t(usec*a)); } template - TimeDelta &operator*=(T a) { usec=(int64_t)(usec*a); return *this; } + TimeDelta &operator*=(T a) { usec=int64_t(usec*a); return *this; } template - TimeDelta operator/(T a) const { return TimeDelta((int64_t)(usec/a)); } + TimeDelta operator/(T a) const { return TimeDelta(int64_t(usec/a)); } template - TimeDelta &operator/=(T a) { usec=(int64_t)(usec/a); return *this; } + TimeDelta &operator/=(T a) { usec=int64_t(usec/a); return *this; } - double operator/(const TimeDelta &t) const { return (double)usec/t.usec; } + double operator/(const TimeDelta &t) const { return double(usec)/t.usec; } bool operator>(const TimeDelta &t) const { return usec>t.usec; } bool operator>=(const TimeDelta &t) const { return usec>=t.usec; } @@ -70,15 +71,15 @@ public: bool operator!=(const TimeDelta &t) const { return usec!=t.usec; } operator bool() const { return usec; } - - friend std::ostream &operator<<(std::ostream &, const TimeDelta &); private: - int64_t usec; + RawTime usec; }; template inline TimeDelta operator*(T a, const TimeDelta &t) { return t*a; } +extern std::ostream &operator<<(std::ostream &, const TimeDelta &); + } // namespace Time } // namespace Msp