LAPTOP-SNT8I5JK\Boounion
2025-05-06 200c309ea5d129c6b3e87c00bcf5024dea53a8b0
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;
    };
}