SubZero Common
Common library components for an FRC CommandRobot
Loading...
Searching...
No Matches
EmptyCommand.h
Go to the documentation of this file.
1#pragma once
2
3#include <frc2/command/CommandHelper.h>
4#include <frc2/command/FunctionalCommand.h>
5#include <frc2/command/Requirements.h>
6
7#include <functional>
8
9namespace subzero {
11 : public frc2::CommandHelper<frc2::FunctionalCommand, EmptyCommand> {
12public:
13 explicit EmptyCommand();
14
15 EmptyCommand(EmptyCommand &&other) = default;
16};
17} // namespace subzero
EmptyCommand(EmptyCommand &&other)=default