Maze Builder Docs
6.0.1
Loading...
Searching...
No Matches
json_helper.h
Go to the documentation of this file.
1
#ifndef JSON_HELPER_H
2
#define JSON_HELPER_H
3
4
#include <string>
5
#include <memory>
6
#include <unordered_map>
7
8
namespace
mazes
{
9
14
class
json_helper
{
15
public
:
17
explicit
json_helper
();
18
20
~json_helper
();
21
22
// Copy constructor
23
json_helper
(
const
json_helper
& other);
24
25
// Copy assignment operator
26
json_helper
& operator=(
const
json_helper
& other);
27
28
// Move constructor
29
json_helper
(
json_helper
&& other)
noexcept
=
default
;
30
31
// Move assignment operator
32
json_helper
& operator=(
json_helper
&& other)
noexcept
=
default
;
33
38
std::string
from
(
const
std::unordered_map<std::string, std::string>& map,
int
pretty_print = 4) const noexcept;
39
40
private:
42
class json_helper_impl;
43
std::unique_ptr<json_helper_impl> impl;
44
};
45
46
}
// namespace mazes
47
48
#endif
// JSON_HELPER_H
mazes::json_helper
JSON helper class.
Definition
json_helper.h:14
mazes::json_helper::json_helper
json_helper()
Default constructor.
mazes::json_helper::from
std::string from(const std::unordered_map< std::string, std::string > &map, int pretty_print=4) const noexcept
Get the contents of a map as a string in JSON format.
mazes::json_helper::~json_helper
~json_helper()
Destructor.
mazes
Namespace for the maze builder.
Definition
algo_interface.h:9
include
MazeBuilder
json_helper.h
Generated by
1.12.0