LAPTOP-SNT8I5JK\Boounion
2025-04-30 d38d98d99e873d0a48e75aa9f8472cff4574c132
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#pragma once
#include "CWriteStep.h"
 
 
namespace SERVO {
    class CEqModeChangeStep : public CWriteStep
    {
    public:
        CEqModeChangeStep();
        ~CEqModeChangeStep();
 
    public:
        void setEqModeDev(int nDev);
        int equipmentOn();
        int equipmentOff();
        int setEqMode(short mode);
        void getAttributeVector(CAttributeVector& attrubutes);
 
    private:
        int m_nEqModeDev;
    };
}