]> git.tdb.fi Git - libs/core.git/blobdiff - source/time/timedelta.h
Mark constructors and destructors as default where appropriate
[libs/core.git] / source / time / timedelta.h
index c73529b0e3f8a9c7ea60bdcc215ce105050643fc..a3e62f161c33684f13b90444e23b40fda02567f4 100644 (file)
@@ -1,6 +1,7 @@
 #ifndef MSP_TIME_TIMEDELTA_H_
 #define MSP_TIME_TIMEDELTA_H_
 
+#include <cstdlib>
 #include <ctime>
 #include <msp/strings/lexicalcast.h>
 #include "rawtime.h"
@@ -14,11 +15,11 @@ Represents a quantity of time, such as five seconds.
 class TimeDelta
 {
 private:
-       RawTime usec;
+       RawTime usec = 0;
 
 public:
        /** Constructs a zero TimeDelta. */
-       TimeDelta(): usec(0) { }
+       TimeDelta() = default;
 
        /** Constructs a TimeDelta from a plain number.  The purpose of this is to
        allow serialization together with the raw() function. */
@@ -32,6 +33,7 @@ public:
        TimeDelta &operator+=(const TimeDelta &t) { usec += t.usec; return *this; }
        TimeDelta operator-(const TimeDelta &t) const { return TimeDelta(usec-t.usec); }
        TimeDelta &operator-=(const TimeDelta &t) { usec -= t.usec; return *this; }
+       TimeDelta operator-() const { return TimeDelta(-usec); }
 
        template<typename T>
        TimeDelta operator*(T a) const { return TimeDelta(RawTime(usec*a)); }
@@ -71,6 +73,9 @@ extern const TimeDelta hour;
 extern const TimeDelta day;
 extern const TimeDelta week;
 
+inline TimeDelta abs(const TimeDelta &t) { return t>=zero ? t : -t; }
+using std::abs;
+
 } // namespace Time
 } // namespace Msp