00001 #ifndef TPPROTO_SILENTLOGGER_H 00002 #define TPPROTO_SILENTLOGGER_H 00003 00008 #include <tpproto/logger.h> 00009 00010 namespace TPProto{ 00011 00014 class SilentLogger : public Logger{ 00015 public: 00016 SilentLogger(); 00017 virtual ~SilentLogger(); 00018 00019 void error(const char* mesg, ...); 00020 void warning(const char* mesg, ...); 00021 void info(const char* mesg, ...); 00022 void debug(const char* mesg, ...); 00023 00024 }; 00025 00026 } 00027 00028 #endif
1.5.1