amcl_sensor.cc
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 #ifdef HAVE_CONFIG_H
00031 #include "config.h"
00032 #endif
00033
00034 #include "amcl_sensor.h"
00035
00036
00038
00039 AMCLSensor::AMCLSensor(AdaptiveMCL & aAMCL) : AMCL(aAMCL)
00040 {
00041 return;
00042 }
00043
00044 AMCLSensor::~AMCLSensor()
00045 {
00046 }
00047
00048
00050
00051 int AMCLSensor::Load(ConfigFile* cf, int section)
00052 {
00053 return 0;
00054 }
00055
00056
00058
00059 int AMCLSensor::Unload(void)
00060 {
00061 return 0;
00062 }
00063
00064
00066
00067 int AMCLSensor::Setup(void)
00068 {
00069 return 0;
00070 }
00071
00072
00074
00075 int AMCLSensor::Shutdown(void)
00076 {
00077 return 0;
00078 }
00079
00080
00082
00083
00084
00085
00086
00087
00088
00090
00091 bool AMCLSensor::UpdateAction(pf_t *pf, AMCLSensorData *data)
00092 {
00093 return false;
00094 }
00095
00096
00098
00099 bool AMCLSensor::InitSensor(pf_t *pf, AMCLSensorData *data)
00100 {
00101 return false;
00102 }
00103
00104
00106
00107 bool AMCLSensor::UpdateSensor(pf_t *pf, AMCLSensorData *data)
00108 {
00109 return false;
00110 }
00111
00112
00113 #ifdef INCLUDE_RTKGUI
00114
00116
00117 void AMCLSensor::SetupGUI(rtk_canvas_t *canvas, rtk_fig_t *robot_fig)
00118 {
00119 return;
00120 }
00121
00122
00124
00125 void AMCLSensor::ShutdownGUI(rtk_canvas_t *canvas, rtk_fig_t *robot_fig)
00126 {
00127 return;
00128 }
00129
00130
00132
00133 void AMCLSensor::UpdateGUI(rtk_canvas_t *canvas, rtk_fig_t *robot_fig, AMCLSensorData *data)
00134 {
00135 return;
00136 }
00137
00138 #endif
Last updated 12 September 2005 21:38:45
|