The Gaudi Framework  v29r0 (ff2e7097)
DataObjID.cpp File Reference
#include "GaudiKernel/DataObjID.h"
#include "GaudiKernel/Bootstrap.h"
#include "GaudiKernel/IClassIDSvc.h"
#include "GaudiKernel/ISvcLocator.h"
#include <functional>
Include dependency graph for DataObjID.cpp:

Go to the source code of this file.

Functions

std::ostreamoperator<< (std::ostream &str, const DataObjID &d)
 

Function Documentation

std::ostream& operator<< ( std::ostream str,
const DataObjID d 
)

Definition at line 44 of file DataObjID.cpp.

45 {
46  if ( d.m_clid == 0 && d.m_className == "" ) {
47  str << "('" << d.m_key << "')";
48  } else {
49  str << "('" << d.m_className << "','" << d.m_key << "')";
50  }
51  return str;
52 }
std::string m_key
Definition: DataObjID.h:76
CLID m_clid
Definition: DataObjID.h:72
std::string m_className
Definition: DataObjID.h:75