|
Gaudi Framework, version v22r0 |
| Home | Generated: 9 Feb 2011 |

Public Member Functions | |
| DHH (const CLID &i, const std::string &k) | |
| bool | operator< (DHH const &rhs) const |
Public Attributes | |
| CLID | id |
| std::string | key |
Definition at line 52 of file HistorySvc.cpp.
| DHH::DHH | ( | const CLID & | i, | |
| const std::string & | k | |||
| ) | [inline] |
Definition at line 56 of file HistorySvc.cpp.
| bool DHH::operator< | ( | DHH const & | rhs | ) | const [inline] |
Definition at line 58 of file HistorySvc.cpp.
00058 { 00059 if (id != rhs.id) { 00060 return (id < rhs.id); 00061 } else { 00062 return (key < rhs.key); 00063 } 00064 }
Definition at line 53 of file HistorySvc.cpp.
Definition at line 54 of file HistorySvc.cpp.