16 explicit cell(
int index);
17 explicit cell(
unsigned int row,
unsigned int column,
int index);
18 void link(std::shared_ptr<cell> c1, std::shared_ptr<cell> c2,
bool bidi=
true);
19 void unlink(std::shared_ptr<cell> c1, std::shared_ptr<cell> c2,
bool bidi=
true);
20 std::unordered_map<std::shared_ptr<cell>,
bool> get_links()
const;
21 bool is_linked(
const std::shared_ptr<cell>& c)
const;
23 std::vector<std::shared_ptr<cell>> get_neighbors()
const noexcept;
25 unsigned int get_row()
const;
26 unsigned int get_column()
const;
27 int get_index()
const;
28 void set_index(
int next_index)
noexcept;
30 std::shared_ptr<cell> get_north()
const;
31 std::shared_ptr<cell> get_south()
const;
32 std::shared_ptr<cell> get_east()
const;
33 std::shared_ptr<cell> get_west()
const;
35 void set_north(std::shared_ptr<cell>
const& other);
36 void set_south(std::shared_ptr<cell>
const& other);
37 void set_east(std::shared_ptr<cell>
const& other);
38 void set_west(std::shared_ptr<cell>
const& other);
40 std::shared_ptr<cell> get_left()
const;
41 std::shared_ptr<cell> get_right()
const;
43 void set_left(std::shared_ptr<cell>
const& other_left);
44 void set_right(std::shared_ptr<cell>
const& other_right);
46 void set_row(
unsigned int r)
noexcept;
47 void set_column(
unsigned int c)
noexcept;
50 bool has_key(
const std::shared_ptr<cell>& c)
const;
52 std::unordered_map<std::shared_ptr<cell>,
bool> m_links;
54 unsigned int m_row, m_column;
57 std::shared_ptr<cell> m_north;
58 std::shared_ptr<cell> m_south;
59 std::shared_ptr<cell> m_east;
60 std::shared_ptr<cell> m_west;
62 std::shared_ptr<cell> m_left;
63 std::shared_ptr<cell> m_right;