Defines | |
#define | hyp_ASSERT(Condition) |
#define | hyp_FATAL(Msg) |
#define | hyp_NOTIFY(Msg) |
Enumerations | |
enum | EMessageType { notify, fatal, assertion } |
Functions | |
void | Message (const std::string &Message, EMessageType MessageType) |
|
Value: { \ if ( !( Condition ) ) { \ std::string formated_msg; \ hyp_STRING_TRACE( formated_msg , ("%s",#Condition) ); \ hyp::ker::Message( formated_msg , hyp::ker::assertion); \ } \ } |
|
Value: { \ std::string formated_msg; \ hyp_STRING_TRACE( formated_msg , Msg ); \ hyp::ker::Message( formated_msg, hyp::ker::fatal); \ } |
|
Value: { \ std::string formated_msg; \ hyp_STRING_TRACE( formated_msg , Msg ); \ hyp::ker::Message( formated_msg, hyp::ker::notify ); \ } |
|
This enumeration is only used with the Message function. |
|
General function which allows to display a message box. Used for trace or debug operations.
|
|
|