00001 #ifndef _Q_MESSAGE_DEFS_HH_ 00002 #define _Q_MESSAGE_DEFS_HH_ 00003 00004 enum MsgLevel { 00005 NoMsg = 0, // no message 00006 DebugMsg = 1, // debugging messages 00007 InfoMsg = 2, // information messages 00008 WarnMsg = 3, // an anomalous condition that could be fixed 00009 ErrorMsg = 4, // " " " " " NOT be fixed 00010 PanicMsg = 5, // a fatal error that does not allow to continue 00011 NoFilterMsg = 6 // a message that cannot be filtered on logfile 00012 }; 00013 00014 #endif