|
Gaudi Framework, version v22r0 |
| Home | Generated: 9 Feb 2011 |
#include <string>#include <iostream>

Go to the source code of this file.
Classes | |
| class | Message |
| The Message class. More... | |
Functions | |
| GAUDI_API std::ostream & | operator<< (std::ostream &stream, const Message &msg) |
| Insert the message into a stream. | |
| GAUDI_API bool | operator== (const Message &a, const Message &b) |
| Insert the message into a stream. | |
| GAUDI_API std::ostream& operator<< | ( | std::ostream & | stream, | |
| const Message & | msg | |||
| ) |
Insert the message into a stream.
Definition at line 149 of file Message.cpp.
00150 { 00151 msg.makeFormattedMsg( msg.m_format ); 00152 stream << msg.m_formatted_msg; 00153 return stream; 00154 }