The Gaudi Framework  v29r0 (ff2e7097)
DHH Struct Reference
Collaboration diagram for DHH:

Public Member Functions

 DHH (const CLID &i, std::string k)
 
bool operator< (DHH const &rhs) const
 

Public Attributes

CLID id
 
std::string key
 

Detailed Description

Definition at line 62 of file HistorySvc.cpp.

Constructor & Destructor Documentation

DHH::DHH ( const CLID i,
std::string  k 
)
inline

Definition at line 66 of file HistorySvc.cpp.

66 : id( i ), key( std::move( k ) ) {}
CLID id
Definition: HistorySvc.cpp:63
std::string key
Definition: HistorySvc.cpp:64
T move(T...args)

Member Function Documentation

bool DHH::operator< ( DHH const &  rhs) const
inline

Definition at line 68 of file HistorySvc.cpp.

69  {
70  if ( id != rhs.id ) {
71  return ( id < rhs.id );
72  } else {
73  return ( key < rhs.key );
74  }
75  }
std::string key
Definition: HistorySvc.cpp:64

Member Data Documentation

CLID DHH::id

Definition at line 63 of file HistorySvc.cpp.

std::string DHH::key

Definition at line 64 of file HistorySvc.cpp.


The documentation for this struct was generated from the following file: