selfdriving
LidarSource.h
Go to the documentation of this file.
1 /* -------------------------------------------------------------------------
2  * SelfDriving C++ library based on PTGs and mrpt-nav
3  * Copyright (C) 2019-2022 Jose Luis Blanco, University of Almeria
4  * See LICENSE for license information.
5  * ------------------------------------------------------------------------- */
6 
7 #pragma once
8 
9 #include <mrpt/obs/CObservation2DRangeScan.h>
10 
11 namespace mpp
12 {
14 {
15  public:
16  /// Returns a copy of the last lidar observation
17  virtual mrpt::obs::CObservation2DRangeScan::Ptr last_lidar_obs() const = 0;
18 };
19 } // namespace mpp
Definition: bestTrajectory.h:15
virtual mrpt::obs::CObservation2DRangeScan::Ptr last_lidar_obs() const =0
Returns a copy of the last lidar observation.
Definition: LidarSource.h:13