Skip to content
Snippets Groups Projects
Commit 41fdb84c authored by Mateus Sanches Moura's avatar Mateus Sanches Moura
Browse files

MapBase print() and check() functions are now virtual

parent 2c5ea48c
No related branches found
No related tags found
1 merge request!479Resolve "Make print() and check() functions from MapBase virtual"
Pipeline #20195 failed
......@@ -125,7 +125,7 @@ class MapBase : public NodeBase, public std::enable_shared_from_this<MapBase>
bool state_blocks,
std::ostream& stream,
std::string _tabs = "") const;
void print(int depth, //
virtual void print(int depth, //
bool factored_by, //
bool metric, //
bool state_blocks,
......@@ -133,7 +133,7 @@ class MapBase : public NodeBase, public std::enable_shared_from_this<MapBase>
std::string _tabs = "") const;
virtual CheckLog localCheck(bool _verbose, std::ostream& _stream, std::string _tabs = "") const;
bool check(CheckLog& _log, bool _verbose, std::ostream& _stream, std::string _tabs = "") const;
virtual bool check(CheckLog& _log, bool _verbose, std::ostream& _stream, std::string _tabs = "") const;
};
inline LandmarkBaseConstPtrList MapBase::getLandmarkList() const
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment