The idea is to create object at runtime in C++.
The input for this creation is going to be a json file. For example
{
"pi": 3.141,
"happy": true,
"name": "Niels",
"nothing": null,
"answer": {
"everything": 42
},
"list": [1, 0, 2],
"object": {
"currency": "USD",
"value": 42.99
}
}
What are the options to do this in C++? Can boost help on this?