summaryrefslogtreecommitdiff
path: root/src/frame_time.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/frame_time.h')
-rw-r--r--src/frame_time.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/frame_time.h b/src/frame_time.h
index 891fbe1..045b833 100644
--- a/src/frame_time.h
+++ b/src/frame_time.h
@@ -45,6 +45,7 @@ public:
private:
friend bool operator== (FrameTime const & a, FrameTime const & b);
+ friend bool operator< (FrameTime const & a, FrameTime const & b);
friend std::ostream& operator<< (std::ostream& s, FrameTime const & t);
int _hours;
@@ -54,6 +55,7 @@ private:
};
bool operator== (FrameTime const & a, FrameTime const & b);
+bool operator< (FrameTime const & a, FrameTime const & b);
std::ostream& operator<< (std::ostream&, FrameTime const & t);
}