chenluhua1980
2025-11-18 3cb4638bcb93a8fdf4cfea140025bbc299d35d47
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;
    };
}