The Gaudi Framework  v31r0 (aeb156f0)
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 60 of file HistorySvc.cpp.

Constructor & Destructor Documentation

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

Definition at line 64 of file HistorySvc.cpp.

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

Member Function Documentation

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

Definition at line 66 of file HistorySvc.cpp.

66  {
67  if ( id != rhs.id ) {
68  return ( id < rhs.id );
69  } else {
70  return ( key < rhs.key );
71  }
72  }
std::string key
Definition: HistorySvc.cpp:62

Member Data Documentation

CLID DHH::id

Definition at line 61 of file HistorySvc.cpp.

std::string DHH::key

Definition at line 62 of file HistorySvc.cpp.


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