|
Gaudi Framework, version v23r1 |
| Home | Generated: Wed Feb 29 2012 |
#include <DataHistory.h>
Public Member Functions | |
| bool | operator() (const DataHistory *lhs, const DataHistory *rhs) const |
| bool | operator() (const DataHistory &lhs, const DataHistory &rhs) const |
Definition at line 29 of file DataHistory.h.
| bool DataHistory::DataHistoryOrder::operator() | ( | const DataHistory * | lhs, |
| const DataHistory * | rhs | ||
| ) | const [inline] |
Definition at line 31 of file DataHistory.h.
{
if (lhs->m_dataClassID == rhs->m_dataClassID) {
if (lhs->m_dataKey == rhs->m_dataKey) {
return ( lhs->m_algHist < rhs->m_algHist );
} else {
return ( lhs->m_dataKey < rhs->m_dataKey );
}
} else {
return (lhs->m_dataClassID < rhs->m_dataClassID);
}
}
| bool DataHistory::DataHistoryOrder::operator() | ( | const DataHistory & | lhs, |
| const DataHistory & | rhs | ||
| ) | const [inline] |
Definition at line 43 of file DataHistory.h.
{
if (lhs.m_dataClassID == rhs.m_dataClassID) {
if (lhs.m_dataKey == rhs.m_dataKey) {
return ( lhs.m_algHist < rhs.m_algHist );
} else {
return ( lhs.m_dataKey < rhs.m_dataKey );
}
} else {
return (lhs.m_dataClassID < rhs.m_dataClassID);
}
}