blob: 09051e5c71c338ecdad378a3b54aa1b24a91ab97 [file] [log] [blame]
Brian Silvermanf7f267a2017-02-04 16:16:08 -08001/*----------------------------------------------------------------------------*/
2/* Copyright (c) FIRST 2008-2017. 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 the root directory of */
5/* the project. */
6/*----------------------------------------------------------------------------*/
7
8#pragma once
9
10#include "RobotBase.h"
11
12namespace frc {
13
14class SampleRobot : public RobotBase {
15 public:
16 SampleRobot();
17 virtual ~SampleRobot() = default;
18 virtual void RobotInit();
19 virtual void Disabled();
20 virtual void Autonomous();
21 virtual void OperatorControl();
22 virtual void Test();
23 virtual void RobotMain();
24 void StartCompetition();
25
26 private:
27 bool m_robotMainOverridden;
28};
29
30} // namespace frc