#ifndef _GAMA_NETWORK_MONITORING_TOOL_CHAT_LOG_H_ #define _GAMA_NETWORK_MONITORING_TOOL_CHAT_LOG_H_ #include #include /** \class CMonitoringToolLog ¸ð´ÏÅ͸µ Åø ·Î±× Ŭ·¡½º*/ class CMonitoringToolLog : public CStaticSingleton { public: CMonitoringToolLog(); ~CMonitoringToolLog(); bool WriteChatLog(ChatToolPkt::ChatDataSend* lpChatData); bool WriteAdminLog(unsigned char cChatType, unsigned char* szGMName, unsigned char* szUserName, unsigned char* strRecvMsg); bool WriteUserStatLog(); bool WriteUserStatLog(const CString& strLog); void FlushChatLog(); void FlushStatLog(); }; #endif