123456789101112131415161718192021222324252627282930 |
- //
- // IAPRunTimeData.hpp
- // demo
- //
- // Created by Red_mini on 2024/10/25.
- //
- #ifndef IAPRunTimeData_hpp
- #define IAPRunTimeData_hpp
- #include <stdio.h>
- class IAPRunTimeData{
- public:
- static IAPRunTimeData* getInstance();
- IAPRunTimeData();
-
- void setDeviceLevel(int level);
-
- int getDeviceLevel();
-
- private:
- void _init();
-
- private:
- static IAPRunTimeData* _instance;
- int _leval;
- };
- #endif /* IAPRunTimeData_hpp */
|