blob: 5c70cbdd9eafe0f0c734f5eb70200107f757293a [file] [log] [blame]
jerrymf1579332013-02-07 01:56:28 +00001/*----------------------------------------------------------------------------*/
2/* Copyright (c) FIRST 2008. All Rights Reserved. */
3/* Open Source Software - may be modified and shared by FRC teams. The code */
4/* must be accompanied by the FIRST BSD license file in $(WIND_BASE)/WPILib. */
5/*----------------------------------------------------------------------------*/
6
7#ifndef SIMPLE_ROBOT_H
8#define SIMPLE_ROBOT_H
9
10#include "RobotBase.h"
11
12/**
13 * @todo If this is going to last until release, it needs a better name.
14 */
15class SimpleRobot: public RobotBase
16{
17public:
18 SimpleRobot();
19 virtual ~SimpleRobot() {}
20 virtual void RobotInit();
21 virtual void Disabled();
22 virtual void Autonomous();
23 virtual void OperatorControl();
24 virtual void Test();
25 virtual void RobotMain();
26 void StartCompetition();
27
28private:
29 bool m_robotMainOverridden;
30};
31
32#endif