summaryrefslogtreecommitdiffhomepage
path: root/src/path-search-node.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/path-search-node.hpp')
-rw-r--r--src/path-search-node.hpp24
1 files changed, 0 insertions, 24 deletions
diff --git a/src/path-search-node.hpp b/src/path-search-node.hpp
deleted file mode 100644
index ecad6a77..00000000
--- a/src/path-search-node.hpp
+++ /dev/null
@@ -1,24 +0,0 @@
-#pragma once
-#include "compat/defs.hpp"
-#include "path-search-result.hpp"
-#include <vector>
-#include <Corrade/Containers/Pointer.h>
-
-namespace floormat {
-
-struct path_search_result::node
-{
- friend struct path_search_result;
- friend struct test_app;
-
- node() noexcept;
- fm_DECLARE_DELETED_COPY_ASSIGNMENT(node);
- fm_DECLARE_DEFAULT_MOVE_ASSIGNMENT_(node);
-
- std::vector<point> vec;
-
-private:
- Pointer<node> _next;
-};
-
-} // namespace floormat