Skip to content

Commit

Permalink
WIP
Browse files Browse the repository at this point in the history
  • Loading branch information
jlblancoc committed Nov 28, 2023
1 parent 9fee6bf commit 18ded30
Show file tree
Hide file tree
Showing 7 changed files with 864 additions and 4 deletions.
1 change: 1 addition & 0 deletions libs/maps/include/mrpt/maps.h
Expand Up @@ -29,6 +29,7 @@ MRPT_WARNING(
#include <mrpt/maps/COctoMap.h>
#include <mrpt/maps/CPointsMap.h>
#include <mrpt/maps/CPointsMapXYZI.h>
#include <mrpt/maps/CPointsMapXYZIRT.h>
#include <mrpt/maps/CRandomFieldGridMap3D.h>
#include <mrpt/maps/CReflectivityGridMap2D.h>
#include <mrpt/maps/CSimplePointsMap.h>
Expand Down
2 changes: 1 addition & 1 deletion libs/maps/include/mrpt/maps/CColouredPointsMap.h
Expand Up @@ -36,7 +36,7 @@ class CColouredPointsMap : public CPointsMap
CColouredPointsMap(const CPointsMap& o) { CPointsMap::operator=(o); }
CColouredPointsMap(const CColouredPointsMap& o) : CPointsMap()
{
impl_copyFrom(o);
CColouredPointsMap::impl_copyFrom(o);
}
CColouredPointsMap& operator=(const CPointsMap& o)
{
Expand Down
5 changes: 4 additions & 1 deletion libs/maps/include/mrpt/maps/CPointsMapXYZI.h
Expand Up @@ -31,7 +31,10 @@ class CPointsMapXYZI : public CPointsMap
CPointsMapXYZI() = default;

CPointsMapXYZI(const CPointsMap& o) { CPointsMap::operator=(o); }
CPointsMapXYZI(const CPointsMapXYZI& o) : CPointsMap() { impl_copyFrom(o); }
CPointsMapXYZI(const CPointsMapXYZI& o) : CPointsMap()
{
CPointsMapXYZI::impl_copyFrom(o);
}
CPointsMapXYZI& operator=(const CPointsMap& o)
{
impl_copyFrom(o);
Expand Down

0 comments on commit 18ded30

Please sign in to comment.