ReadConfig.h 221 B

123456789101112131415161718
  1. #ifndef _READCONFIG_H_
  2. #define _READCONFIG_H_
  3. class ReadConfig
  4. {
  5. public:
  6. ReadConfig() = default;
  7. ~ReadConfig() = default;
  8. /* 读取配置文件 */
  9. void readConfigFile();
  10. };
  11. #endif // _READCONFIG_H_