Skip to content
Snippets Groups Projects
Commit fc7932c7 authored by Joan Vallvé Navarro's avatar Joan Vallvé Navarro
Browse files

Merge branch '497-make-print-and-check-functions-from-mapbase-virtual' into...

Merge branch '497-make-print-and-check-functions-from-mapbase-virtual' into '454-implementation-of-new-nodes-creation'

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

See merge request !479
parents 2c5ea48c 04096006
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"
Pipeline #20230 failed
...@@ -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