mirror of
https://github.com/wpilibsuite/allwpilib
synced 2026-06-21 01:01:43 +00:00
Merge "Fixed the Command-Based Robot template [artf2550]"
This commit is contained in:
committed by
Gerrit Code Review
commit
99632e003b
@@ -6,7 +6,7 @@
|
||||
ExampleSubsystem* CommandBase::examplesubsystem = NULL;
|
||||
OI* CommandBase::oi = NULL;
|
||||
|
||||
CommandBase::CommandBase(std::string name) :
|
||||
CommandBase::CommandBase(char const *name) :
|
||||
Command(name)
|
||||
{
|
||||
}
|
||||
|
||||
@@ -14,7 +14,7 @@
|
||||
class CommandBase: public Command
|
||||
{
|
||||
public:
|
||||
CommandBase(std::string name);
|
||||
CommandBase(char const *name);
|
||||
CommandBase();
|
||||
static void init();
|
||||
// Create a single static instance of all of your subsystems
|
||||
|
||||
Reference in New Issue
Block a user