14 lines
306 B
C++
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_
|