#ifndef _READCONFIG_H_ #define _READCONFIG_H_ class ReadConfig { public: ReadConfig() = default; ~ReadConfig() = default; /* 读取配置文件 */ void readConfigFile(); }; #endif // _READCONFIG_H_