https://mooseframework.inl.gov
Public Member Functions | Public Attributes | List of all members
Logger::Message Class Reference

Simple data structure to hold the messages. More...

#include <Logger.h>

Public Member Functions

 Message (EMessageType type, const std::string &msg)
 

Public Attributes

EMessageType _type
 The type of the message. More...
 
std::string _msg
 The text of the message. More...
 

Detailed Description

Simple data structure to hold the messages.

Definition at line 82 of file Logger.h.

Constructor & Destructor Documentation

◆ Message()

Logger::Message::Message ( EMessageType  type,
const std::string &  msg 
)
inline

Definition at line 85 of file Logger.h.

86  {
87  _type = type;
88  _msg = msg;
89  }
EMessageType _type
The type of the message.
Definition: Logger.h:92
std::string _msg
The text of the message.
Definition: Logger.h:94

Member Data Documentation

◆ _msg

std::string Logger::Message::_msg

The text of the message.

Definition at line 94 of file Logger.h.

Referenced by Message().

◆ _type

EMessageType Logger::Message::_type

The type of the message.

Definition at line 92 of file Logger.h.

Referenced by Message().


The documentation for this class was generated from the following file: