Ravens Robotics FRC 2015
RobotComponent.h
Go to the documentation of this file.
1 
10 #ifndef ROBOTCOMPONENT_H_
11 #define ROBOTCOMPONENT_H_
12 #include "WPILib.h"
13 
14 
112 public:
116  RobotComponent();
117 
121  virtual ~RobotComponent();
122 
126  virtual void ComponentInit();
127 
131  virtual void Sense();
132 
136  virtual void DoWork();
137 };
138 
139 
140 #endif /* ROBOTCOMPONENT_H_ */
141 
virtual void ComponentInit()
virtual void Sense()
virtual void DoWork()
virtual ~RobotComponent()