NRC_InstrDataPALGRIPPER
Data class of the instruction PALGRIPPER
class NRC_InstrDataPALGRIPPER : public NRC_InstrDataBase
{
public:
NRC_InstrDataPALGRIPPER() : id(1), tool(1) {};
NRC_InstrDataPALGRIPPER(int id, int tool) : id(id), tool(tool) {};
virtual int NRC_GetInstrFromData(InstrData&);
int id;
int tool;
};
Sample code