2026-03-11 23:40:06 +08:00

24 lines
595 B
C++
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

#ifndef CONFIGMANAGER_H
#define CONFIGMANAGER_H
#include "IVrConfig.h"
#include "BaseConfigManager.h"
class ConfigManager : public BaseConfigManager
{
public:
ConfigManager();
virtual ~ConfigManager();
// 重写初始化方法跳过ConfigMonitor
bool Initialize(const std::string& configFilePath = "") override;
// 加载配置文件
bool LoadConfigFromFile(const std::string& filePath) override;
// 处理工位切换命令HoleDetection特有非基类override
void OnSwitchWorkPositionCommand(int workPosition);
};
#endif // CONFIGMANAGER_H