You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

18 lines
428 B
C++

#pragma once
#include "workcmd.h"
//pci 端口的开关指令
class CWorkCmdPciPortSwitch :public CWorkCmd
{
public:
CWorkCmdPciPortSwitch(CString CtrlContent,bool bOpen);
~CWorkCmdPciPortSwitch(void);
virtual bool Excute();
virtual void WirteLog();
void SetPar(CString CtrlContent,bool b);
private:
bool m_bOpen;//打开或者关闭
CString m_CtrlContent;//控制的内容
};