LAPTOP-SNT8I5JK\Boounion
2025-09-19 334b16b4abb4cbe3d1d4e4f211efd6f4468ae09f
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;
    };
}