Basic writer.
[libsub.git] / src / sub_time.cc
1 /*
2     Copyright (C) 2014 Carl Hetherington <cth@carlh.net>
3
4     This program is free software; you can redistribute it and/or modify
5     it under the terms of the GNU General Public License as published by
6     the Free Software Foundation; either version 2 of the License, or
7     (at your option) any later version.
8
9     This program is distributed in the hope that it will be useful,
10     but WITHOUT ANY WARRANTY; without even the implied warranty of
11     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12     GNU General Public License for more details.
13
14     You should have received a copy of the GNU General Public License
15     along with this program; if not, write to the Free Software
16     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
17
18 */
19
20 #include "sub_time.h"
21 #include "compose.hpp"
22 #include <iostream>
23
24 using std::ostream;
25 using std::string;
26 using namespace sub;
27
28 bool
29 sub::operator== (Time const & a, Time const & b)
30 {
31         return a._hours == b._hours && a._minutes == b._minutes && a._seconds == b._seconds && a._frames == b._frames;
32 }
33
34 ostream&
35 sub::operator<< (ostream& s, Time const & t)
36 {
37         s << t._hours << ":" << t._minutes << ":" << t._seconds << ":" << t._frames;
38         return s;
39 }
40
41 string
42 Time::timecode () const
43 {
44         return String::compose ("%1:%2:%3:%4", _hours, _minutes, _seconds, _frames);
45 }