|
Sierra Toolkit
Version of the Day
|
Class RuntimeWarningSymmetric reports a symmetric warning message to the report system. More...
#include <RuntimeWarning.hpp>
Public Member Functions | |
| RuntimeWarningSymmetric (MessageCode &message_code=MessageCode::s_defaultMessageCode) | |
| Creates a new RuntimeWarning instance, setting the message code. More... | |
| ~RuntimeWarningSymmetric () | |
| Destroys a RuntimeWarningSymmetric instance. More... | |
| RuntimeWarningSymmetric & | operator<< (OStreamFunctionPtr f) |
| Member function operator<< passes the ios_base manipulator to the output stream. More... | |
| RuntimeWarningSymmetric & | operator<< (IOSBaseFunctionPtr f) |
| Member function operator<< passes the ios_base manipulator to the output stream. More... | |
| template<class T > | |
| RuntimeWarningSymmetric & | operator<< (const T &t) |
| Member function operator<< passes any data type to the exception string class for conversion to a string. More... | |
Public Attributes | |
| std::ostringstream | message |
| Stream to receive message content. | |
Class RuntimeWarningSymmetric reports a symmetric warning message to the report system.
For example:
if (symmetric_runtime_warning_condition)
RuntimeWarningSymmetric() << "My useful message about " << some_data; if (symmetric_runtime_warning_condition) {
static MessageCode mc;
RuntimeWarningSymmetric(mc) << "My useful message about " << some_data;
}
Definition at line 205 of file RuntimeWarning.hpp.
|
explicit |
Creates a new RuntimeWarning instance, setting the message code.
| message_code | an MessageCode const reference to the message code associated with this message. |
Definition at line 87 of file RuntimeWarning.cpp.
| stk_classic::RuntimeWarningSymmetric::~RuntimeWarningSymmetric | ( | ) |
Destroys a RuntimeWarningSymmetric instance.
The message is displayed by calling the report_symmetric_warning() function. However, if the count of remaining messages for this message id is zero, the message is not displayed.
Definition at line 93 of file RuntimeWarning.cpp.
|
inline |
Member function operator<< passes the ios_base manipulator to the output stream.
Definition at line 246 of file RuntimeWarning.hpp.
|
inline |
Member function operator<< passes the ios_base manipulator to the output stream.
Definition at line 257 of file RuntimeWarning.hpp.
|
inline |
Member function operator<< passes any data type to the exception string class for conversion to a string.
| t | a T const reference that is to be converted to a string. |
Definition at line 272 of file RuntimeWarning.hpp.