odometrysensor.h

来自「Particle filtering implementation and ap」· C头文件 代码 · 共 21 行

H
21
字号
#ifndef ODOMETRYSENSOR_H#define ODOMETRYSENSOR_H#include <string>#include <sensor/sensor_base/sensor.h>namespace GMapping{class OdometrySensor: public Sensor{	public:		OdometrySensor(const std::string& name, bool ideal=false);		inline bool isIdeal() const { return m_ideal; }	protected:		bool m_ideal;	};};#endif

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?