Program Listing for File LandmarkPoint3.h

Return to documentation for file (include/mola_kernel/entities/LandmarkPoint3.h)

/* -------------------------------------------------------------------------
 *   A Modular Optimization framework for Localization and mApping  (MOLA)
 * Copyright (C) 2018-2024 Jose Luis Blanco, University of Almeria
 * See LICENSE for license information.
 * ------------------------------------------------------------------------- */
#pragma once

#include <mola_kernel/entities/EntityBase.h>
#include <mrpt/math/TPoint3D.h>

namespace mola
{
class LandmarkPoint3 : public EntityBase
{
    DEFINE_SERIALIZABLE(LandmarkPoint3, mola)

   public:
    mrpt::math::TPoint3D point;
};

}  // namespace mola