siudevices.h

来自「在驱动开发时」· C头文件 代码 · 共 44 行

H
44
字号
// SIUDevices.h: interface for the CSIUDevices class.
//
//////////////////////////////////////////////////////////////////////
/////////////////////////////////////////////////////////////////////////////
// Project:$$ROOT$$
// Author:谢兴锋
// Date:2005年08月12日
// Description:kingteller virtula devices platform sdk
//
/////////////////////////////////////////////////////////////////////////////

#if !defined(AFX_SIUDEVICES_H__BC223752_63EB_4332_899B_906C55E7ADEA__INCLUDED_)
#define AFX_SIUDEVICES_H__BC223752_63EB_4332_899B_906C55E7ADEA__INCLUDED_

#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000


class CSIUDevices : public ISIUDevices  
{
public:
	CSIUDevices();
	virtual ~CSIUDevices();

//取厂家名称	
	virtual CString GetVendorName();

	virtual int Init();
//重启
	virtual int Uninit();


	int SetLight(CString csLightName, CString csFlashRate, CString& csErrorCode);
	CString GetDoorState(CString csDoorName, CString csErrorCode);
	void OnInitLightNameList(CStringArray& arName);
	void OnInitDoorNameList(CStringArray& arName);

protected:
private:
};

#endif // !defined(AFX_SIUDEVICES_H__BC223752_63EB_4332_899B_906C55E7ADEA__INCLUDED_)

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?