24#ifndef APPLYOFFSETFORCESBYMIRRORFORCECOMMAND_H_
25#define APPLYOFFSETFORCESBYMIRRORFORCECOMMAND_H_
28#include <SAL_MTM1M3C.h>
29#include <cRIO/DataTypes.h>
38 MTM1M3_command_applyOffsetForcesByMirrorForceC *data);
40 MTM1M3_command_applyOffsetForcesByMirrorForceC *getData() {
return &_data; }
43 void ackInProgress(
const char *description,
double timeout)
override;
45 void ackFailed(std::string reason)
override;
48 MTM1M3_command_applyOffsetForcesByMirrorForceC _data;
Definition ApplyOffsetForcesByMirrorForceCommand.h:35
void ackComplete() override
Acknowledges the command has completed successfully.
Definition ApplyOffsetForcesByMirrorForceCommand.cpp:51
void ackInProgress(const char *description, double timeout) override
Acknowledges the command is in progress.
Definition ApplyOffsetForcesByMirrorForceCommand.cpp:46
void execute() override
Executes the command.
Definition ApplyOffsetForcesByMirrorForceCommand.cpp:44
void ackFailed(std::string reason) override
Acknowledges the command has failed.
Definition ApplyOffsetForcesByMirrorForceCommand.cpp:56
Parent class for all commands.
Definition Command.h:42