odometry
Sampling3D.hpp
Go to the documentation of this file.
1 #ifndef __ODOMETRY_SAMPLING3D_HPP__
2 #define __ODOMETRY_SAMPLING3D_HPP__
3 
4 #include <base/Pose.hpp>
5 
6 namespace odometry
7 {
12  class Sampling3D
13  {
14  public:
15  virtual ~Sampling3D(){};
16  virtual base::Pose getPoseDeltaSample() = 0;
17  };
18 }
19 
20 #endif
21 
virtual base::Pose getPoseDeltaSample()=0
Definition: Sampling3D.hpp:12
virtual ~Sampling3D()
Definition: Sampling3D.hpp:15