blob: ebe33b9af0a1049204dc6c6ece51166fba6572b6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
#pragma once
#include "compat/defs.hpp"
#include "search-result.hpp"
#include "point.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
|