Initial checkin of unified hierarchy of WPILib 2015

This commit is contained in:
Brad Miller
2013-12-15 18:30:16 -05:00
commit 3178911eef
1560 changed files with 410007 additions and 0 deletions

View File

@@ -0,0 +1,48 @@
//============================================================================
// Name : Robot.cpp
// Author :
// Version :
// Copyright :
// Description : Hello World in C++, Ansi-style
//============================================================================
//============================================================================
// Name : Robot.cpp
// Author :
// Version :
// Copyright :
// Description : Hello World in C++, Ansi-style
//============================================================================
#include "WPILib.h"
class Robot : public IterativeRobot {
private:
LiveWindow *lw;
virtual void RobotInit() {
lw = LiveWindow::GetInstance();
}
virtual void AutonomousInit() {
}
virtual void AutonomousPeriodic() {
}
virtual void TeleopInit() {
}
virtual void TeleopPeriodic() {
}
virtual void TestPeriodic() {
lw->Run();
}
};
START_ROBOT_CLASS(Robot);