| 12345678910111213141516171819202122232425262728 |
- /*
- * Util.h
- *
- * Created on: 2020年9月11日
- * Author: vsbes
- */
-
- #ifndef UTILS_UTIL_H_
- #define UTILS_UTIL_H_
-
- #include <string>
-
- #include "../common/Type.h"
-
- class Util
- {
- public:
- Util();
- virtual ~Util();
-
- static HRESULT setItemStrValue(std::string id, std::string value, int priority);
-
- static HRESULT setItemIntValue(std::string id, int value, int priority);
-
- static HRESULT setItemFloatValue(std::string id, float value, int priority);
- };
-
- #endif /* UTILS_UTIL_H_ */
|