blob: ae5c42dfd675f35537b478104f576e86aa61e392 [file] [log] [blame]
jerrym1815d882013-02-14 04:21:29 +00001// RobotBuilder Version: 0.0.2
2//
3// This file was generated by RobotBuilder. It contains sections of
4// code that are automatically generated and assigned by robotbuilder.
5// These sections will be updated in the future when you export to
6// C++ from RobotBuilder. Do not put any code or make any change in
7// the blocks indicating autogenerated code or it will be lost on an
8// update. Deleting the comments indicating the section will prevent
9// it from being updated in th future.
10
11
12#ifndef AUTONOMOUS_COMMAND_H
13#define AUTONOMOUS_COMMAND_H
14
15
16#include "Commands/Subsystem.h"
17#include "../Robot.h"
18
19/**
20 *
21 *
22 * @author ExampleAuthor
23 */
24class AutonomousCommand: public Command {
25public:
26 AutonomousCommand();
27 virtual void Initialize();
28 virtual void Execute();
29 virtual bool IsFinished();
30 virtual void End();
31 virtual void Interrupted();
32};
33
34#endif