Maze Builder Docs 7.5.6
Loading...
Searching...
No Matches
maze_interface.h
Go to the documentation of this file.
1#ifndef MAZE_INTERFACE_H
2#define MAZE_INTERFACE_H
3
4#include <string>
5
6namespace mazes
7{
8
13 {
14
15 public:
16 virtual ~maze_interface() = default;
17
18 virtual std::string maze() const noexcept = 0;
19 }; // maze_interface
20
21} // namespace mazes
22
23#endif // MAZE_INTERFACE_H
Interface for the mazes.
Definition maze_interface.h:13
Namespace for the maze builder.
Definition algo_interface.h:6