From 8cf389aaf748c77aecda0b3a3773c45053b0f231 Mon Sep 17 00:00:00 2001 From: Loek Le Blansch Date: Fri, 25 Oct 2024 13:02:38 +0200 Subject: implement all ALGA features --- BreadthFirstPathfinder.h | 6 ------ 1 file changed, 6 deletions(-) (limited to 'BreadthFirstPathfinder.h') diff --git a/BreadthFirstPathfinder.h b/BreadthFirstPathfinder.h index 0c73c69..c8b9fe5 100644 --- a/BreadthFirstPathfinder.h +++ b/BreadthFirstPathfinder.h @@ -9,16 +9,10 @@ class BreadthFirstPathfinder : public Pathfinder { public: virtual void find_between(const XY &, const XY &); - virtual const Path & get_path(); private: - Path solution; XY end; std::vector find_step(const std::vector &); - -protected: - virtual void clear(); - }; -- cgit v1.2.3