12345678910111213141516171819202122232425262728293031 |
- #pragma once
- #include <map>
- struct M_ThirdPluginOnlyCFGData
- {
- //°üÃû
- std::string mPackageName;
- //ÇþµÀºÅ
- std::string mChannelID;
- //ƽ̨
- std::string mPlatform;
- //±¸×¢
- std::string mRemark;
- };
- class M_ThirdPluginOnlyCFG
- {
- public:
- private:
- static std::auto_ptr<M_ThirdPluginOnlyCFG> msSingleton;
- public:
- int GetCount();
- const M_ThirdPluginOnlyCFGData* GetData(std::string PackageName);
- const std::map<std::string, M_ThirdPluginOnlyCFGData>& GetMapData();
- void Load();
- void LoadLua();
- void Reload();
- static M_ThirdPluginOnlyCFG* GetSingleton();
- static void Release();
- private:
- std::map<std::string, M_ThirdPluginOnlyCFGData> mMapData;
- };
|