Program Listing for File EntityRelativeBase.h

Return to documentation for file (include/mola_kernel/entities/EntityRelativeBase.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>

namespace mola
{
class EntityRelativeBase : public EntityBase
{
   public:
    mola::id_t base_id_{mola::INVALID_ID};
};

}  // namespace mola