-
Notifications
You must be signed in to change notification settings - Fork 24
/
optional.cpp
45 lines (36 loc) · 855 Bytes
/
optional.cpp
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
#include "struct_mapping/struct_mapping.h"
#include <iostream>
#include <optional>
#include <sstream>
#include <string>
struct Engine
{
int age;
};
struct Car
{
std::optional<Engine> engine;
std::optional<std::string> name;
std::optional<int> max_speed;
};
int main()
{
struct_mapping::reg(&Engine::age, "age");
struct_mapping::reg(&Car::engine, "engine");
struct_mapping::reg(&Car::name, "name", struct_mapping::NotEmpty{});
struct_mapping::reg(&Car::max_speed, "max_speed", struct_mapping::Bounds{0, 100});
std::istringstream json_data(R"json(
{
"engine":
{
"age": 42
},
"name": "Mercedes"
}
)json");
Car car;
struct_mapping::map_json_to_struct(car, json_data);
std::ostringstream out_json_data;
struct_mapping::map_struct_to_json(car, out_json_data, " ", false);
std::cout << out_json_data.str() << std::endl;
}