summaryrefslogtreecommitdiff
path: root/src/sub_time.h
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2015-12-16 20:35:54 +0000
committerCarl Hetherington <cth@carlh.net>2015-12-16 20:35:54 +0000
commit5877be91301e5dd54ca125c0acd7bfb1ecc3dcd6 (patch)
tree96952a50aeb4f68ab458f8191a3d464f8ced7aa7 /src/sub_time.h
parent462902f22a930c52d6d4ac4ac9097d078108b568 (diff)
No-op; remove trailing whitespace.
Diffstat (limited to 'src/sub_time.h')
-rw-r--r--src/sub_time.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/sub_time.h b/src/sub_time.h
index 22178e9..7abdedb 100644
--- a/src/sub_time.h
+++ b/src/sub_time.h
@@ -23,7 +23,7 @@
#include <boost/optional.hpp>
namespace sub {
-
+
class Rational
{
public:
@@ -31,7 +31,7 @@ public:
: numerator (numerator_)
, denominator (denominator_)
{}
-
+
int numerator;
int denominator;
@@ -59,7 +59,7 @@ public:
static Time from_hmsf (int h, int m, int s, int f, boost::optional<Rational> rate = boost::optional<Rational> ());
static Time from_hms (int h, int m, int s, int ms);
-
+
private:
friend bool operator< (Time const & a, Time const & b);
friend bool operator> (Time const & a, Time const & b);
@@ -71,7 +71,7 @@ private:
, _frames (frames)
, _rate (rate)
{}
-
+
int _seconds;
int _frames;
boost::optional<Rational> _rate;
@@ -82,7 +82,7 @@ bool operator> (Time const & a, Time const & b);
bool operator== (Time const & a, Time const & b);
bool operator!= (Time const & a, Time const & b);
std::ostream& operator<< (std::ostream& s, Time const & t);
-
+
}
#endif