Go to the source code of this file.
|
| 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) |
| |
| #define GAUDIKERNEL_TIME_ICPP 1 |
Definition at line 229 of file Time.icpp.
{
return t1.ns() != t2.ns();
}
Definition at line 289 of file Time.icpp.
{
return t1.ns() != t2.ns();
}
Definition at line 197 of file Time.icpp.
{
return Gaudi::Time (t.ns() +
ts.ns());
}
Definition at line 201 of file Time.icpp.
{
return Gaudi::Time (t.ns() +
ts.ns());
}
Definition at line 265 of file Time.icpp.
{
return Gaudi::TimeSpan (ts1.ns() + ts2.ns());
}
Definition at line 205 of file Time.icpp.
{
return Gaudi::TimeSpan (t1.ns() - t2.ns());
}
Definition at line 209 of file Time.icpp.
{
return Gaudi::Time (t.ns() -
ts.ns());
}
Definition at line 261 of file Time.icpp.
{
return Gaudi::TimeSpan (-
ts.ns());
}
Definition at line 269 of file Time.icpp.
{
return Gaudi::TimeSpan (ts1.ns() - ts2.ns());
}
Definition at line 233 of file Time.icpp.
{
return t1.ns() < t2.ns();
}
Definition at line 293 of file Time.icpp.
{
return t1.ns() < t2.ns();
}
Definition at line 237 of file Time.icpp.
{
return t1.ns() <= t2.ns();
}
Definition at line 297 of file Time.icpp.
{
return t1.ns() <= t2.ns();
}
Definition at line 225 of file Time.icpp.
{
return t1.ns() == t2.ns();
}
Definition at line 285 of file Time.icpp.
{
return t1.ns() == t2.ns();
}
Definition at line 241 of file Time.icpp.
{
return t1.ns() > t2.ns();
}
Definition at line 301 of file Time.icpp.
{
return t1.ns() > t2.ns();
}
Definition at line 245 of file Time.icpp.
{
return t1.ns() >= t2.ns();
}
Definition at line 305 of file Time.icpp.
{
return t1.ns() >= t2.ns();
}
Definition at line 320 of file Time.icpp.
{
s >> tmp;
t = Gaudi::Time(tmp);
}