|
Gaudi Framework, version v21r4 |
| Home | Generated: 7 Sep 2009 |
#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 148 of file Message.cpp.
00149 { 00150 msg.makeFormattedMsg( msg.m_format ); 00151 stream << msg.m_formatted_msg; 00152 return stream; 00153 }