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