Skip to content
Snippets Groups Projects
Commit 04096006 authored by Mateus Sanches Moura's avatar Mateus Sanches Moura Committed by Joan Vallvé Navarro
Browse files

Resolve "Make print() and check() functions from MapBase virtual"

parent 2c5ea48c
No related branches found
No related tags found
2 merge requests!479Resolve "Make print() and check() functions from MapBase virtual",!448Draft: Resolve "Implementation of new nodes creation"
...@@ -125,7 +125,7 @@ class MapBase : public NodeBase, public std::enable_shared_from_this<MapBase> ...@@ -125,7 +125,7 @@ class MapBase : public NodeBase, public std::enable_shared_from_this<MapBase>
bool state_blocks, bool state_blocks,
std::ostream& stream, std::ostream& stream,
std::string _tabs = "") const; std::string _tabs = "") const;
void print(int depth, // virtual void print(int depth, //
bool factored_by, // bool factored_by, //
bool metric, // bool metric, //
bool state_blocks, bool state_blocks,
...@@ -133,7 +133,7 @@ class MapBase : public NodeBase, public std::enable_shared_from_this<MapBase> ...@@ -133,7 +133,7 @@ class MapBase : public NodeBase, public std::enable_shared_from_this<MapBase>
std::string _tabs = "") const; std::string _tabs = "") const;
virtual CheckLog localCheck(bool _verbose, std::ostream& _stream, 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 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