123456789101112131415161718192021222324252627 |
- #ifndef MODULE_A_CONFIG_H
- #define MODULE_A_CONFIG_H
- #include "project_marco.h"
- /// <summary>
- /// 配置模块A
- /// </summary>
- class module_a_config : public studio_singleton<module_a_config>
- {
- public:
- bool read_config(const std::string& fpath)
- {
- bool status = false;
- if (!std::filesystem::exists(std::filesystem::path(fpath)))
- {
- std::cout << "config file not exist" << std::endl;
- return status;
- }
- status = true;
- return status;
- }
- };
- #endif // MODULE_A_CONFIG_H
|