From a65aaeb43df61a9127aed0c4eb8dd4cb0b3b0bd6 Mon Sep 17 00:00:00 2001 From: Stanislaw Halik Date: Sun, 4 Feb 2024 15:18:32 +0100 Subject: b --- src/path-search-node.hpp | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 src/path-search-node.hpp (limited to 'src/path-search-node.hpp') diff --git a/src/path-search-node.hpp b/src/path-search-node.hpp new file mode 100644 index 00000000..ecad6a77 --- /dev/null +++ b/src/path-search-node.hpp @@ -0,0 +1,24 @@ +#pragma once +#include "compat/defs.hpp" +#include "path-search-result.hpp" +#include +#include + +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 vec; + +private: + Pointer _next; +}; + +} // namespace floormat -- cgit v1.2.3