Command::IsFinished() must be overriden by subclasses again (#353)

Documentation was added for InstantCommand and TimedCommand.
This commit is contained in:
Tyler Veness
2016-11-19 00:26:22 -08:00
committed by Peter Johnson
parent 140c365e4b
commit b25a7cb370
8 changed files with 55 additions and 27 deletions

View File

@@ -9,6 +9,10 @@
using namespace frc;
/**
* Creates a new {@link InstantCommand} with the given name.
* @param name the name for this command
*/
InstantCommand::InstantCommand(const std::string& name) : Command(name) {}
bool InstantCommand::IsFinished() { return true; }