CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
List of all members | Public Member Functions | Private Attributes
Message Class Reference

#include <MessageDispatcher.h>

Public Member Functions

std::string getText ()
 
std::string getTitle ()
 
std::string getType ()
 
 Message (std::string the_title, std::string the_text, MessageType the_type)
 

Private Attributes

std::string text
 
std::string title
 
MessageType type
 

Detailed Description

Definition at line 14 of file MessageDispatcher.h.

Constructor & Destructor Documentation

Message::Message ( std::string  the_title,
std::string  the_text,
MessageType  the_type 
)
inline

Definition at line 25 of file MessageDispatcher.h.

References text, and title.

26  {
27  type = the_type;
28  title = the_title;
29  text = the_text;
30  }
type
Definition: HCALResponse.h:21
std::string text
std::string title

Member Function Documentation

std::string Message::getText ( )
inline

Definition at line 33 of file MessageDispatcher.h.

References text.

33 { return text; }
std::string text
std::string Message::getTitle ( )
inline

Definition at line 32 of file MessageDispatcher.h.

References title.

32 { return title; }
std::string title
std::string Message::getType ( void  )

Member Data Documentation

std::string Message::text
private
std::string Message::title
private
MessageType Message::type
private