NRC_InstrDataPALOFF
Data class of the instruction PALOFF
It needs to be used with NRC_InstrDataPALON
class NRC_InstrDataPALOFF : public NRC_InstrDataBase
{
public:
NRC_InstrDataPALOFF() : id(1), var(0) {};
NRC_InstrDataPALOFF(int id, int var) : id(id), var(var) {};
virtual int NRC_GetInstrFromData(InstrData&);
int id;
int var;
};
Sample code