Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00012
00013
00014
00015
00016
00017
00018
00019
00021
00022
00023
00024
00025
00026
00027
00028
00029 #ifndef WARNING_INCLUDED
00030 #define WARNING_INCLUDED
00031
00032 #include "Message.h"
00033
00034
00035
00036
00037
00038
00039 class Warning : public Message{
00040
00041 private:
00042
00043 static bool _suppressWarnings;
00044 static const char *_warningSalutation;
00045 public:
00046
00047 Warning(const char *const methodName, const char *format,...);
00048 static void suppressWarnings(bool suppressWarnings);
00049 void print(void);
00050
00051 };
00052
00053 #endif
00054