aboutsummaryrefslogtreecommitdiff
path: root/DijkstraPathfinder.h
diff options
context:
space:
mode:
authorLoek Le Blansch <loek@pipeframe.xyz>2024-10-25 13:02:38 +0200
committerLoek Le Blansch <loek@pipeframe.xyz>2024-10-25 13:02:38 +0200
commit8cf389aaf748c77aecda0b3a3773c45053b0f231 (patch)
tree91268879710d6ae2868e548d3f44c664a19443d8 /DijkstraPathfinder.h
parentda669db4f083194bc78358041c5d9929e103ac9f (diff)
implement all ALGA features
Diffstat (limited to 'DijkstraPathfinder.h')
-rw-r--r--DijkstraPathfinder.h2
1 files changed, 0 insertions, 2 deletions
diff --git a/DijkstraPathfinder.h b/DijkstraPathfinder.h
index 5fb1e21..93e6943 100644
--- a/DijkstraPathfinder.h
+++ b/DijkstraPathfinder.h
@@ -9,13 +9,11 @@ class DijkstraPathfinder : public Pathfinder {
public:
virtual void find_between(const XY &, const XY &);
- virtual const Path & get_path();
protected:
virtual void clear();
private:
- Path solution;
XY end;
struct Node {