24#ifndef MOVEHARDPOINTACTUATORSCOMMAND_H_
25#define MOVEHARDPOINTACTUATORSCOMMAND_H_
28#include <SAL_MTM1M3C.h>
29#include <cRIO/DataTypes.h>
35class MoveHardpointActuatorsCommand :
public Command {
37 MoveHardpointActuatorsCommand(int32_t commandID, MTM1M3_command_moveHardpointActuatorsC *data);
39 MTM1M3_command_moveHardpointActuatorsC *getData() {
return &_data; }
43 void ackInProgress(
const char *description,
double timeout)
override;
45 void ackFailed(std::string reason)
override;
48 MTM1M3_command_moveHardpointActuatorsC _data;
void execute() override
Executes the command.
Definition MoveHardpointActuatorsCommand.cpp:52
void ackInProgress(const char *description, double timeout) override
Acknowledges the command is in progress.
Definition MoveHardpointActuatorsCommand.cpp:54
void ackFailed(std::string reason) override
Acknowledges the command has failed.
Definition MoveHardpointActuatorsCommand.cpp:63
void ackComplete() override
Acknowledges the command has completed successfully.
Definition MoveHardpointActuatorsCommand.cpp:59
bool validate() override
Validates the command.
Definition MoveHardpointActuatorsCommand.cpp:41