CMS 3D CMS Logo

Public Member Functions | Private Member Functions | Private Attributes

edm::LogInfo Class Reference

#include <MessageLogger.h>

Inheritance diagram for edm::LogInfo:
cscdqm::LogInfo

List of all members.

Public Member Functions

 LogInfo (std::string const &id)
LogInfooperator<< (std::ios_base &(*f)(std::ios_base &))
LogInfooperator<< (std::ostream &(*f)(std::ostream &))
template<class T >
LogInfooperator<< (T const &t)
 ~LogInfo ()

Private Member Functions

 LogInfo (LogInfo const &)

Private Attributes

std::auto_ptr< MessageSenderap

Detailed Description

Definition at line 205 of file MessageLogger.h.


Constructor & Destructor Documentation

edm::LogInfo::LogInfo ( std::string const &  id) [inline, explicit]

Definition at line 208 of file MessageLogger.h.

    : ap ( (!MessageDrop::infoAlwaysSuppressed          // Change log 21
            && edm::MessageDrop::instance()->infoEnabled) ?
           new MessageSender(ELinfo,id) : 0 )
  { }
edm::LogInfo::~LogInfo ( )

Definition at line 49 of file MessageLogger.cc.

{}
edm::LogInfo::LogInfo ( LogInfo const &  ) [private]

Member Function Documentation

template<class T >
LogInfo& edm::LogInfo::operator<< ( T const &  t) [inline]

Definition at line 217 of file MessageLogger.h.

References ap, and matplotRender::t.

{ if(ap.get()) (*ap) << t; return *this; }
LogInfo& edm::LogInfo::operator<< ( std::ios_base &(*)(std::ios_base &)  f) [inline]

Definition at line 222 of file MessageLogger.h.

References ap, and f.

                                      { if(ap.get()) (*ap) << f; return *this; }     
LogInfo& edm::LogInfo::operator<< ( std::ostream &(*)(std::ostream &)  f) [inline]

Definition at line 219 of file MessageLogger.h.

References ap, and f.

                                      { if(ap.get()) (*ap) << f; return *this; }

Member Data Documentation

std::auto_ptr<MessageSender> edm::LogInfo::ap [private]

Definition at line 226 of file MessageLogger.h.

Referenced by operator<<().