mrDarker
2025-09-05 6b80da0fe2a6053b39802a6701db6df0ab1fde24
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;
    };
}