#pragma once #include #include #include #include #include #include #include #include using namespace std; namespace baosight { /** * @brief 负载程序的启动和初始变量信息的加载 */ class ProxyTest : public Component { public: /** * @brief Construct a new ProxyTest object */ ProxyTest(); /** * @brief Destroy the ProxyTest object */ virtual ~ProxyTest(); /** * @brief 启动进程 * @return int */ virtual int start(); private: MessageICEPtr ProxyTest_server; ///< Ice通信模块 std::unique_ptr logger_; }; }; // namespace baosight