Is it possible to parse json into specified descendant class?
std::string json = "{ \"name\" : \"Franky\" }"
class Person : Poco::JSON::Object {
// ...
}
Person p = ???(json);
I've seen handlers but didn't find any explicit way to override JSON::Object creation