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