#ifndef __DUAL_CONTROL_LOGGING #define __DUAL_CONTROL_LOGGING #include #include class logger_ifc { public: virtual ~logger_ifc() {} virtual void log (int result, const std::string &user_name, const std::string &token) {}; }; class logger : public logger_ifc { private: std::shared_ptr delegate_; public: logger (const std::shared_ptr &delegate) : delegate_ (delegate) {} logger() : logger (std::shared_ptr (new logger_ifc)) {} void log (int result, const std::string &user_name, const std::string &token) { delegate_->log (result, user_name, token); } }; #endif