LAPTOP-SNT8I5JK\Boounion
2025-04-09 bd30f028a163c7293620064fc98744dacd41ceae
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 "CJobDataB.h"
 
 
namespace SERVO {
    class CEqCassetteCtrlCmdStep : public CWriteStep
    {
    public:
        CEqCassetteCtrlCmdStep();
        ~CEqCassetteCtrlCmdStep();
 
    public:
        void setCtrlCmdDev(int nDev);
        int sendCtrlCmd(short cmd,
            short* jobExistence,
            int jobExistenceSize,
            short slotProcess, 
            short jopCount,
            CJobDataB* pJobDataB);
        void getAttributeVector(CAttributeVector& attrubutes);
 
    private:
        int m_nCtrlCmdDev;
    };
}