The Gaudi Framework  master (37c0b60a)
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 ) ) {}

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:
std::move
T move(T... args)
DHH::id
CLID id
Definition: HistorySvc.cpp:70
DHH::key
std::string key
Definition: HistorySvc.cpp:71