PrtObj.h
上传用户:asikq0571
上传日期:2014-07-12
资源大小:528k
文件大小:1k
- // PrtObj.h: interface for the CPrtObj class.
- //
- //////////////////////////////////////////////////////////////////////
- #if !defined(AFX_PRTOBJ_H__27948C12_C054_47BC_A0B6_A2536FECCE65__INCLUDED_)
- #define AFX_PRTOBJ_H__27948C12_C054_47BC_A0B6_A2536FECCE65__INCLUDED_
- #if _MSC_VER > 1000
- #pragma once
- #endif // _MSC_VER > 1000
- class CPrtObj
- {
- //虚函数,各规约函数使用时覆盖,实现各自功能
- public:
- virtual void SlaveSend();
- virtual void SlaveRec(BYTE recByte);
- virtual void MasterRec(BYTE recByte);
- virtual void MasterSend(UINT nIDEvent);
- virtual void CloseTimer();
- virtual void StartTimer();
- virtual void InitPrt();
- CPrtObj();
- virtual ~CPrtObj();
- };
- #endif // !defined(AFX_PRTOBJ_H__27948C12_C054_47BC_A0B6_A2536FECCE65__INCLUDED_)