#pragma once #include #include struct M_ThirdPluginOnlyCFGData { //包名 std::string mPackageName; //渠道号 std::string mChannelID; //平台 std::string mPlatform; //备注 std::string mRemark; }; class M_ThirdPluginOnlyCFG { public: private: static std::auto_ptr msSingleton; public: int GetCount(); const M_ThirdPluginOnlyCFGData* GetData(std::string PackageName); boost::unordered_map& GetMapData(); void Reload(); void Load(const std::string& path); void Load(); static M_ThirdPluginOnlyCFG* GetSingleton(); private: boost::unordered_map mMapData; };