The Gaudi Framework  master (ff829712)
Loading...
Searching...
No Matches
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 69 of file HistorySvc.cpp.

Constructor & Destructor Documentation

◆ DHH()

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

Definition at line 73 of file HistorySvc.cpp.

73: id( i ), key( std::move( k ) ) {}
std::string key
CLID id

Member Function Documentation

◆ operator<()

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

Definition at line 75 of file HistorySvc.cpp.

75 {
76 if ( id != rhs.id ) {
77 return ( id < rhs.id );
78 } else {
79 return ( key < rhs.key );
80 }
81 }

Member Data Documentation

◆ id

CLID DHH::id

Definition at line 70 of file HistorySvc.cpp.

◆ key

std::string DHH::key

Definition at line 71 of file HistorySvc.cpp.


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