chenluhua1980
6 天以前 0f014b951cde5536f508eb4a7386ebbd3808e78d
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
#pragma once
#include "CWriteStep.h"
#include "CJobDataA.h"
 
 
namespace SERVO {
    class CEqCassetteCtrlCmdStep : public CWriteStep
    {
    public:
        CEqCassetteCtrlCmdStep();
        virtual ~CEqCassetteCtrlCmdStep();
 
    public:
        void setCtrlCmdDev(int nDev);
        int sendCtrlCmd(short cmd,
            short* jobExistence,
            int jobExistenceSize,
            short slotProcess, 
            short jopCount,
            CJobDataA* pJobDataA);
        void getAttributeVector(CAttributeVector& attrubutes);
 
    private:
        int m_nCtrlCmdDev;
    };
}