7#include <frc2/command/CommandBase.h>
8#include <frc2/command/CommandHelper.h>
22 :
public frc2::CommandHelper<frc2::CommandBase, AutonomousNothing>
31 void End(
bool interrupted)
override;
38 std::string
GetName()
const final;
A command that can be selected from the dashboard.
Definition: autonomous_command.h:14
Definition: autonomous_nothing.h:23
frc2::Command * GetCommand() final
Get the command to run when selected from dashboard.
Definition: autonomous_nothing.cpp:29
void End(bool interrupted) override
Definition: autonomous_nothing.cpp:18
void Initialize() override
Definition: autonomous_nothing.cpp:12
bool IsFinished() override
Definition: autonomous_nothing.cpp:21
void Execute() override
Definition: autonomous_nothing.cpp:15
AutonomousNothing()
Definition: autonomous_nothing.cpp:7
std::string GetName() const final
Get the name of the command to display on the dashboard.
Definition: autonomous_nothing.cpp:25