2015-01-05 19:07:24 -05:00
|
|
|
#include "HHBase.h"
|
|
|
|
#include <iostream>
|
|
|
|
#include <fstream>
|
|
|
|
#include <stdexcept>
|
|
|
|
#include <map>
|
|
|
|
HHBase::HHBase():
|
|
|
|
hhbot(new HHRobot()){
|
|
|
|
printf("Done\n");
|
|
|
|
}
|
|
|
|
void HHBase::RobotInit(){
|
|
|
|
}
|
|
|
|
void HHBase::DisabledInit(){}
|
|
|
|
void HHBase::AutonomousInit(){
|
|
|
|
}
|
|
|
|
void HHBase::TeleopInit(){
|
|
|
|
}
|
|
|
|
void HHBase::DisabledContinuous(){}
|
|
|
|
void HHBase::AutonomousContinuous(){}
|
|
|
|
void HHBase::TeleopContinuous(){}
|
|
|
|
void HHBase::DisabledPeriodic(){}
|
|
|
|
void HHBase::AutonomousPeriodic(){
|
|
|
|
}
|
|
|
|
void HHBase::TeleopPeriodic(){
|
2015-01-10 11:46:30 -05:00
|
|
|
hhbot->Handler();
|
2015-01-05 19:07:24 -05:00
|
|
|
}
|
|
|
|
void HHBase::Test(){}
|
|
|
|
START_ROBOT_CLASS(HHBase);
|
|
|
|
// vim: ts=2:sw=2:et
|