#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