24#ifndef RESETPIDCOMMAND_H_
25#define RESETPIDCOMMAND_H_
28#include <SAL_MTM1M3C.h>
29#include <cRIO/DataTypes.h>
39 MTM1M3_command_resetPIDC *getData() {
return &_data; }
43 void ackInProgress(
const char *description,
double timeout)
override;
45 void ackFailed(std::string reason)
override;
48 MTM1M3_command_resetPIDC _data;
Parent class for all commands.
Definition Command.h:42
Definition ResetPIDCommand.h:35
void ackInProgress(const char *description, double timeout) override
Acknowledges the command is in progress.
Definition ResetPIDCommand.cpp:47
void ackComplete() override
Acknowledges the command has completed successfully.
Definition ResetPIDCommand.cpp:51
void ackFailed(std::string reason) override
Acknowledges the command has failed.
Definition ResetPIDCommand.cpp:55
void execute() override
Executes the command.
Definition ResetPIDCommand.cpp:45
bool validate() override
Validates the command.
Definition ResetPIDCommand.cpp:37