The Gaudi Framework  master (181af51f)
Loading...
Searching...
No Matches
GaudiException.cpp File Reference
Include dependency graph for GaudiException.cpp:

Go to the source code of this file.

Functions

std::ostream & operator<< (std::ostream &os, const GaudiException &ge)
 
std::ostream & operator<< (std::ostream &os, const GaudiException *pge)
 
MsgStreamoperator<< (MsgStream &os, const GaudiException &ge)
 
MsgStreamoperator<< (MsgStream &os, const GaudiException *pge)
 

Function Documentation

◆ operator<<() [1/4]

MsgStream & operator<< ( MsgStream & os,
const GaudiException & ge )

Definition at line 86 of file GaudiException.cpp.

86{ return ge.printOut( os ); }
virtual std::ostream & printOut(std::ostream &os=std::cerr) const
methods for overloaded printout to std::ostream& and MsgStream&

◆ operator<<() [2/4]

MsgStream & operator<< ( MsgStream & os,
const GaudiException * pge )

Definition at line 88 of file GaudiException.cpp.

88 {
89 return ( 0 == pge ) ? ( os << " GaudiException* points to NULL!" ) : ( os << *pge );
90}

◆ operator<<() [3/4]

std::ostream & operator<< ( std::ostream & os,
const GaudiException & ge )

Definition at line 80 of file GaudiException.cpp.

80{ return ge.printOut( os ); }

◆ operator<<() [4/4]

std::ostream & operator<< ( std::ostream & os,
const GaudiException * pge )

Definition at line 82 of file GaudiException.cpp.

82 {
83 return ( 0 == pge ) ? ( os << " GaudiException* points to NULL!" ) : ( os << *pge );
84}