FACT++  1.0
MessageImp::MessageImp ( std::ostream &  out = std::cout)

Stores a reference to the given ostream in fOut. This is the stream to which all messaged issued are redirected by default if Write() has not been overwritten doing something else

The stored reference can be accessed by either operator()() or Out()

Note, that you have to ensure the stream which is references doesn't go out of scope while in use by MessageImp or one of its derivatives.

Parameters
outostream to which the output should be redirected

Definition at line 39 of file MessageImp.cc.

39  : fOut(out)
40 {
41 }
std::ostream & fOut
Definition: MessageImp.h:27