ct_common
1.0.1
Common library for combinatorial testing
|
00001 #include <ct_common/file_parse/err_logger_cerr.h> 00002 #include <iostream> 00003 00004 using namespace ct::common; 00005 00006 ErrLogger_Cerr::ErrLogger_Cerr(void) 00007 : ErrLogger() { 00008 } 00009 00010 ErrLogger_Cerr::ErrLogger_Cerr(const ErrLogger_Cerr &from) 00011 : ErrLogger(from) { 00012 } 00013 00014 ErrLogger_Cerr::~ErrLogger_Cerr(void) { 00015 } 00016 00017 const ErrLogger_Cerr &ErrLogger_Cerr::operator =(const ErrLogger_Cerr &right) { 00018 ErrLogger::operator =(right); 00019 return *this; 00020 } 00021 00022 void ErrLogger_Cerr::innerReportError(const std::string &str) { 00023 std::cerr << str << std::endl; 00024 } 00025 00026 void ErrLogger_Cerr::innerReportWarning(const std::string &str) { 00027 std::cerr << str << std::endl; 00028 }