WLG/scheduler/update_cfg.hpp
2024-11-05 14:44:08 +08:00

14 lines
306 B
C++

#ifndef UPDATE_CFG_HPP_
#define UPDATE_CFG_HPP_
#include <unordered_set>
#define CONFIG_UPDATE "/opt/configenv/config_update.json"
class UpdateCfg {
public:
static int ReadCfg(std::unordered_set<int> &update);
static int WriteCfg(std::unordered_set<int> &update);
};
#endif // UPDATE_CFG_HPP_