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