24#ifndef EXITCONTROLCOMMAND_H_
25#define EXITCONTROLCOMMAND_H_
28#include <cRIO/DataTypes.h>
40class ExitControlCommand :
public Command {
42 ExitControlCommand(int32_t commandID);
45 void ackInProgress(
const char *description,
double timeout)
override;
47 void ackFailed(std::string reason)
override;
void execute() override
Executes the command.
Definition ExitControlCommand.cpp:34
void ackFailed(std::string reason) override
Acknowledges the command has failed.
Definition ExitControlCommand.cpp:44
void ackComplete() override
Acknowledges the command has completed successfully.
Definition ExitControlCommand.cpp:40
void ackInProgress(const char *description, double timeout) override
Acknowledges the command is in progress.
Definition ExitControlCommand.cpp:36