Gaudi Framework, version v23r4

Home   Generated: Mon Sep 17 2012
Classes | Functions

Message.h File Reference

#include <string>
#include <iostream>
Include dependency graph for Message.h:
This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Classes

class  Message
 The Message class. More...

Functions

GAUDI_API std::ostreamoperator<< (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.

Function Documentation

GAUDI_API std::ostream& operator<< ( std::ostream stream,
const Message msg 
)

Insert the message into a stream.

Definition at line 150 of file Message.cpp.

{
  msg.makeFormattedMsg( msg.m_format );
  stream << msg.m_formatted_msg;
  return stream;
}
GAUDI_API bool operator== ( const Message a,
const Message b 
)

Insert the message into a stream.

Definition at line 176 of file Message.cpp.

{
  return a.m_source == b.m_source &&
    a.m_type == b.m_type &&
    a.m_message == b.m_message;
}
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Defines

Generated at Mon Sep 17 2012 13:49:40 for Gaudi Framework, version v23r4 by Doxygen version 1.7.2 written by Dimitri van Heesch, © 1997-2004