ct_common  1.0.1
Common library for combinatorial testing
src/ct_common/file_parse/err_logger_cerr.h
Go to the documentation of this file.
00001 #ifndef ERR_LOGGER_CERR_H_
00002 #define ERR_LOGGER_CERR_H_
00003 
00004 #include <ct_common/file_parse/err_logger.h>
00005 
00006 namespace ct {
00007 namespace common {
00008 class ErrLogger_Cerr : public ErrLogger {
00009 public:
00010   ErrLogger_Cerr(void);
00011   ErrLogger_Cerr(const ErrLogger_Cerr &from);
00012   virtual ~ErrLogger_Cerr(void);
00013   const ErrLogger_Cerr &operator = (const ErrLogger_Cerr &right);
00014   
00015 public:
00016   virtual void innerReportError(const std::string &str);
00017   virtual void innerReportWarning(const std::string &str);  
00018 };
00019 }  // common
00020 }  // ct
00021 
00022 #endif  // ERR_LOGGER_CERR_H_
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Defines