ATLAS Offline Software
Loading...
Searching...
No Matches
IOVCallbackError.h File Reference
#include "GaudiKernel/MsgStream.h"
#include <exception>
#include <string>
#include <iostream>
Include dependency graph for IOVCallbackError.h:
This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Classes

class  IOVCallbackError

Functions

std::ostream & operator<< (std::ostream &os, const IOVCallbackError &ge)
 overloaded printout to std::ostream
std::ostream & operator<< (std::ostream &os, const IOVCallbackError *pge)
MsgStream & operator<< (MsgStream &os, const IOVCallbackError &ge)
 overloaded printout to MsgStream
MsgStream & operator<< (MsgStream &os, const IOVCallbackError *pge)
 overloaded printout to MsgStream

Function Documentation

◆ operator<<() [1/4]

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

overloaded printout to MsgStream

Definition at line 61 of file IOVCallbackError.h.

61 {
62 return ge.printOut( os );
63}
virtual std::ostream & printOut(std::ostream &os=std::cerr) const

◆ operator<<() [2/4]

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

overloaded printout to MsgStream

Definition at line 65 of file IOVCallbackError.h.

65 {
66 return (0 == pge) ?
67 ( os << " IOVCallbackError* points to NULL!" ) : ( os << *pge );
68}

◆ operator<<() [3/4]

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

overloaded printout to std::ostream

Definition at line 53 of file IOVCallbackError.h.

53 {
54 return ge.printOut( os );
55}

◆ operator<<() [4/4]

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

Definition at line 56 of file IOVCallbackError.h.

57{ return (0 == pge) ?
58 ( os << " IOVCallbackError* points to NULL!" ) : ( os << *pge ); }