#include <Interval.h>
Public Member Functions | |
const TimeType & | end () const |
Interval (const TimeType &start, const TimeType &end, const PayloadType &payload) | |
Interval (const TimeType &start, const TimeType &end) | |
bool | operator!= (const Interval< TimeType, PayloadType > &other) const |
bool | operator== (const Interval< TimeType, PayloadType > &other) const |
const PayloadType & | payload () const |
void | setPayload (const PayloadType &payload) |
const TimeType & | start () const |
Static Public Member Functions | |
static Interval & | invalid () |
Protected Attributes | |
PayloadType | _payload |
bool | isInvalid |
TimeType | m_end |
TimeType | m_start |
Definition at line 20 of file Interval.h.
l1t::Interval< TimeType, PayloadType >::Interval | ( | const TimeType & | start, |
const TimeType & | end | ||
) | [inline] |
Definition at line 26 of file Interval.h.
References l1t::Interval< TimeType, PayloadType >::m_end, and l1t::Interval< TimeType, PayloadType >::m_start.
l1t::Interval< TimeType, PayloadType >::Interval | ( | const TimeType & | start, |
const TimeType & | end, | ||
const PayloadType & | payload | ||
) | [inline] |
const TimeType& l1t::Interval< TimeType, PayloadType >::end | ( | void | ) | const [inline] |
Definition at line 43 of file Interval.h.
References l1t::Interval< TimeType, PayloadType >::m_end.
Referenced by l1t::Interval< TimeType, PayloadType >::operator==().
{ return this->m_end; }
static Interval& l1t::Interval< TimeType, PayloadType >::invalid | ( | ) | [static] |
bool l1t::Interval< TimeType, PayloadType >::operator!= | ( | const Interval< TimeType, PayloadType > & | other | ) | const [inline] |
Definition at line 56 of file Interval.h.
{ return ! (*this == other); }
bool l1t::Interval< TimeType, PayloadType >::operator== | ( | const Interval< TimeType, PayloadType > & | other | ) | const [inline] |
Definition at line 51 of file Interval.h.
References l1t::Interval< TimeType, PayloadType >::end(), l1t::Interval< TimeType, PayloadType >::isInvalid, and l1t::Interval< TimeType, PayloadType >::start().
const PayloadType& l1t::Interval< TimeType, PayloadType >::payload | ( | ) | const [inline] |
Definition at line 38 of file Interval.h.
References l1t::Interval< TimeType, PayloadType >::_payload.
Referenced by l1t::Interval< TimeType, PayloadType >::setPayload().
{ return this->_payload; }
void l1t::Interval< TimeType, PayloadType >::setPayload | ( | const PayloadType & | payload | ) | [inline] |
Definition at line 36 of file Interval.h.
References l1t::Interval< TimeType, PayloadType >::_payload, and l1t::Interval< TimeType, PayloadType >::payload().
const TimeType& l1t::Interval< TimeType, PayloadType >::start | ( | ) | const [inline] |
Definition at line 41 of file Interval.h.
References l1t::Interval< TimeType, PayloadType >::m_start.
Referenced by l1t::IntervalManager< TimeType, PayloadType >::addInterval(), and l1t::Interval< TimeType, PayloadType >::operator==().
{ return this->m_start; }
PayloadType l1t::Interval< TimeType, PayloadType >::_payload [protected] |
Definition at line 63 of file Interval.h.
Referenced by l1t::Interval< TimeType, PayloadType >::payload(), and l1t::Interval< TimeType, PayloadType >::setPayload().
bool l1t::Interval< TimeType, PayloadType >::isInvalid [protected] |
Definition at line 66 of file Interval.h.
Referenced by l1t::Interval< TimeType, PayloadType >::operator==().
TimeType l1t::Interval< TimeType, PayloadType >::m_end [protected] |
Definition at line 62 of file Interval.h.
Referenced by l1t::Interval< TimeType, PayloadType >::end(), and l1t::Interval< TimeType, PayloadType >::Interval().
TimeType l1t::Interval< TimeType, PayloadType >::m_start [protected] |
Definition at line 61 of file Interval.h.
Referenced by l1t::Interval< TimeType, PayloadType >::Interval(), and l1t::Interval< TimeType, PayloadType >::start().