mirror of
https://github.com/team2059/Dent
synced 2024-12-28 21:02:30 -05:00
29 lines
585 B
C++
29 lines
585 B
C++
#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(){
|
|
hhbot->Handler();
|
|
}
|
|
void HHBase::Test(){}
|
|
START_ROBOT_CLASS(HHBase);
|
|
// vim: ts=2:sw=2:et
|