Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00022
00023
00024
00025
00026
00027
00029
00030
00031 #include "amcl_sensor.h"
00032
00033 using namespace amcl;
00034
00036
00037 AMCLSensor::AMCLSensor()
00038 {
00039 return;
00040 }
00041
00042 AMCLSensor::~AMCLSensor()
00043 {
00044 }
00045
00047
00048 bool AMCLSensor::UpdateAction(pf_t *pf, AMCLSensorData *data)
00049 {
00050 return false;
00051 }
00052
00053
00055
00056 bool AMCLSensor::InitSensor(pf_t *pf, AMCLSensorData *data)
00057 {
00058 return false;
00059 }
00060
00061
00063
00064 bool AMCLSensor::UpdateSensor(pf_t *pf, AMCLSensorData *data)
00065 {
00066 return false;
00067 }
00068
00069
00070 #ifdef INCLUDE_RTKGUI
00071
00073
00074 void AMCLSensor::SetupGUI(rtk_canvas_t *canvas, rtk_fig_t *robot_fig)
00075 {
00076 return;
00077 }
00078
00079
00081
00082 void AMCLSensor::ShutdownGUI(rtk_canvas_t *canvas, rtk_fig_t *robot_fig)
00083 {
00084 return;
00085 }
00086
00087
00089
00090 void AMCLSensor::UpdateGUI(rtk_canvas_t *canvas, rtk_fig_t *robot_fig, AMCLSensorData *data)
00091 {
00092 return;
00093 }
00094
00095 #endif