#ifndef _RYL_DBAGENT_STORE_DATA_MGR_H_ #define _RYL_DBAGENT_STORE_DATA_MGR_H_ #include "DBDataMgr.h" #include "StoreData.h" namespace DBAgent { namespace DataStorage { // ù¹øÂ° : UID // µÎ¹øÂ° : ¼­¹ö±º ¹øÈ£ class CStoreDataMgr : public CDBDataMgr { public: static CStoreDataMgr& GetInstance(); private: CStoreDataMgr(); ~CStoreDataMgr(); virtual void Log(LOG_TYPE eLogType, const char* pRtn, const char* pFileName, int nLine, const CSessionData* lpSessionData, const UnifiedStoreKey& dataKey, const char* szErrorMsg); }; } } #endif