24#ifndef STARTCOMMAND_H_
25#define STARTCOMMAND_H_
28#include <SAL_MTM1M3C.h>
29#include <cRIO/DataTypes.h>
43class StartCommand :
public Command {
45 StartCommand(int32_t commandID, MTM1M3_command_startC *data);
47 std::string getConfigurationOverride() {
return _data.configurationOverride; }
49 virtual double getDefaultTimeout()
override;
53 void ackInProgress(
const char *description,
double timeout)
override;
55 void ackFailed(std::string reason)
override;
58 MTM1M3_command_startC _data;
bool validate() override
Validates the command.
Definition StartCommand.cpp:40
void execute() override
Executes the command.
Definition StartCommand.cpp:52
void ackInProgress(const char *description, double timeout) override
Acknowledges the command is in progress.
Definition StartCommand.cpp:54
void ackComplete() override
Acknowledges the command has completed successfully.
Definition StartCommand.cpp:58
void ackFailed(std::string reason) override
Acknowledges the command has failed.
Definition StartCommand.cpp:62