GME  13
CallLogger.h
Go to the documentation of this file.
00001 #pragma once
00002 #include <string>
00003 
00004 class CallLogger
00005 {
00006 protected:
00007         bool                m_logEnabled;
00008         std::string         m_logFile;
00009 
00010         void                log( const std::string& p_command, const std::string& p_parameter);
00011 
00012 public:
00013         CallLogger(void);
00014         ~CallLogger(void);
00015 
00016         void setLog( bool p_val, const std::string& p_logFile);
00017 };