The Gaudi Framework  v33r1 (b1225454)
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 70 of file HistorySvc.cpp.

Constructor & Destructor Documentation

◆ DHH()

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

Definition at line 74 of file HistorySvc.cpp.

74 : id( i ), key( std::move( k ) ) {}
CLID id
Definition: HistorySvc.cpp:71
std::string key
Definition: HistorySvc.cpp:72
T move(T... args)

Member Function Documentation

◆ operator<()

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

Definition at line 76 of file HistorySvc.cpp.

76  {
77  if ( id != rhs.id ) {
78  return ( id < rhs.id );
79  } else {
80  return ( key < rhs.key );
81  }
82  }
std::string key
Definition: HistorySvc.cpp:72

Member Data Documentation

◆ id

CLID DHH::id

Definition at line 71 of file HistorySvc.cpp.

◆ key

std::string DHH::key

Definition at line 72 of file HistorySvc.cpp.


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