|
Gaudi Framework, version v22r4 |
| Home | Generated: Fri Sep 2 2011 |

Go to the source code of this file.
Namespaces | |
| namespace | Gaudi |
Helper functions to set/get the application return code. | |
Defines | |
| #define | GAUDIKERNEL_TIME_ICPP 1 |
Functions | |
| std::ostream & | Gaudi::operator<< (std::ostream &out, const Gaudi::Time &time) |
| Output operator. | |
| std::ostream & | Gaudi::operator<< (std::ostream &out, const Gaudi::TimeSpan &time) |
| Output operator. | |
| Gaudi::Time | operator+ (const Gaudi::Time &t, const Gaudi::TimeSpan &ts) |
| Gaudi::Time | operator+ (const Gaudi::TimeSpan &ts, const Gaudi::Time &t) |
| Gaudi::TimeSpan | operator- (const Gaudi::Time &t1, const Gaudi::Time &t2) |
| Gaudi::Time | operator- (const Gaudi::Time &t, const Gaudi::TimeSpan &ts) |
| bool | operator== (const Gaudi::Time &t1, const Gaudi::Time &t2) |
| bool | operator!= (const Gaudi::Time &t1, const Gaudi::Time &t2) |
| bool | operator< (const Gaudi::Time &t1, const Gaudi::Time &t2) |
| bool | operator<= (const Gaudi::Time &t1, const Gaudi::Time &t2) |
| bool | operator> (const Gaudi::Time &t1, const Gaudi::Time &t2) |
| bool | operator>= (const Gaudi::Time &t1, const Gaudi::Time &t2) |
| bool | operator! (const Gaudi::Time &t) |
| Gaudi::TimeSpan | operator+ (const Gaudi::TimeSpan &ts) |
| Gaudi::TimeSpan | operator- (const Gaudi::TimeSpan &ts) |
| Gaudi::TimeSpan | operator+ (const Gaudi::TimeSpan &ts1, const Gaudi::TimeSpan &ts2) |
| Gaudi::TimeSpan | operator- (const Gaudi::TimeSpan &ts1, const Gaudi::TimeSpan &ts2) |
| bool | operator== (const Gaudi::TimeSpan &t1, const Gaudi::TimeSpan &t2) |
| bool | operator!= (const Gaudi::TimeSpan &t1, const Gaudi::TimeSpan &t2) |
| bool | operator< (const Gaudi::TimeSpan &t1, const Gaudi::TimeSpan &t2) |
| bool | operator<= (const Gaudi::TimeSpan &t1, const Gaudi::TimeSpan &t2) |
| bool | operator> (const Gaudi::TimeSpan &t1, const Gaudi::TimeSpan &t2) |
| bool | operator>= (const Gaudi::TimeSpan &t1, const Gaudi::TimeSpan &t2) |
| bool | operator! (const Gaudi::TimeSpan &ts) |
| StreamBuffer & | operator<< (StreamBuffer &s, const Gaudi::Time &t) |
| StreamBuffer & | operator>> (StreamBuffer &s, Gaudi::Time &t) |
| bool operator! | ( | const Gaudi::Time & | t ) | [inline] |
| bool operator! | ( | const Gaudi::TimeSpan & | ts ) | [inline] |
| bool operator!= | ( | const Gaudi::TimeSpan & | t1, |
| const Gaudi::TimeSpan & | t2 | ||
| ) | [inline] |
| bool operator!= | ( | const Gaudi::Time & | t1, |
| const Gaudi::Time & | t2 | ||
| ) | [inline] |
| Gaudi::Time operator+ | ( | const Gaudi::Time & | t, |
| const Gaudi::TimeSpan & | ts | ||
| ) | [inline] |
| Gaudi::TimeSpan operator+ | ( | const Gaudi::TimeSpan & | ts1, |
| const Gaudi::TimeSpan & | ts2 | ||
| ) | [inline] |
| Gaudi::Time operator+ | ( | const Gaudi::TimeSpan & | ts, |
| const Gaudi::Time & | t | ||
| ) | [inline] |
| Gaudi::TimeSpan operator+ | ( | const Gaudi::TimeSpan & | ts ) | [inline] |
| Gaudi::TimeSpan operator- | ( | const Gaudi::TimeSpan & | ts1, |
| const Gaudi::TimeSpan & | ts2 | ||
| ) | [inline] |
| Gaudi::TimeSpan operator- | ( | const Gaudi::Time & | t1, |
| const Gaudi::Time & | t2 | ||
| ) | [inline] |
| Gaudi::Time operator- | ( | const Gaudi::Time & | t, |
| const Gaudi::TimeSpan & | ts | ||
| ) | [inline] |
| Gaudi::TimeSpan operator- | ( | const Gaudi::TimeSpan & | ts ) | [inline] |
| bool operator< | ( | const Gaudi::Time & | t1, |
| const Gaudi::Time & | t2 | ||
| ) | [inline] |
| bool operator< | ( | const Gaudi::TimeSpan & | t1, |
| const Gaudi::TimeSpan & | t2 | ||
| ) | [inline] |
| StreamBuffer& operator<< | ( | StreamBuffer & | s, |
| const Gaudi::Time & | t | ||
| ) | [inline] |
| bool operator<= | ( | const Gaudi::TimeSpan & | t1, |
| const Gaudi::TimeSpan & | t2 | ||
| ) | [inline] |
| bool operator<= | ( | const Gaudi::Time & | t1, |
| const Gaudi::Time & | t2 | ||
| ) | [inline] |
| bool operator== | ( | const Gaudi::TimeSpan & | t1, |
| const Gaudi::TimeSpan & | t2 | ||
| ) | [inline] |
| bool operator== | ( | const Gaudi::Time & | t1, |
| const Gaudi::Time & | t2 | ||
| ) | [inline] |
| bool operator> | ( | const Gaudi::TimeSpan & | t1, |
| const Gaudi::TimeSpan & | t2 | ||
| ) | [inline] |
| bool operator> | ( | const Gaudi::Time & | t1, |
| const Gaudi::Time & | t2 | ||
| ) | [inline] |
| bool operator>= | ( | const Gaudi::TimeSpan & | t1, |
| const Gaudi::TimeSpan & | t2 | ||
| ) | [inline] |
| bool operator>= | ( | const Gaudi::Time & | t1, |
| const Gaudi::Time & | t2 | ||
| ) | [inline] |
| StreamBuffer& operator>> | ( | StreamBuffer & | s, |
| Gaudi::Time & | t | ||
| ) | [inline] |
Definition at line 320 of file Time.icpp.
{
Gaudi::Time::ValueType tmp;
s >> tmp;
t = Gaudi::Time(tmp);
return s;
}