| 对比新文件 |
| | |
| | | #pragma once |
| | | #include "CReadStep.h" |
| | | #include "CVcrEventReport.h" |
| | | |
| | | |
| | | namespace SERVO { |
| | | class CEqVcrEventStep : public CReadStep |
| | | { |
| | | public: |
| | | CEqVcrEventStep(); |
| | | ~CEqVcrEventStep(); |
| | | |
| | | public: |
| | | virtual void getAttributeVector(CAttributeVector& attrubutes); |
| | | virtual int onReadData(); |
| | | virtual int onComplete(); |
| | | virtual int onTimeout(); |
| | | void setVcrEventReportDev(int nDev); |
| | | CVcrEventReport* getVcrEventReport(); |
| | | int setReturnCode(short code); |
| | | |
| | | private: |
| | | int m_nVcrEventReportDev; |
| | | CVcrEventReport m_vcrEventReport; |
| | | }; |
| | | } |
| | | |