2025-03-12 14:17:53 +08:00

17 lines
419 B
C++

#pragma once
#include "sys_node_mng_api/NodeMngInterface.h"
#include "pub_sysinfo_api/SysInfoApi.h"
class CAppService;
class CSeqRedundant : public iot_sys::CRedundantSwitchInterface
{
public:
CSeqRedundant(CAppService* service);
~CSeqRedundant();
int redundantSwitch(bool bMaster, bool bSlave);
private:
CAppService* m_ptrAppService;
};
typedef boost::shared_ptr<CSeqRedundant> CSeqRedundantPtr;