rttr
rttr copied to clipboard
how to deserialization std::vector<a pointer or shared_ptr type>
struct circle : shape { circle(std::string n) : shape(n) {}
double radius = 5.2;
//std::vector<point2d> points;
std::vector<point2d*> points;
}
If the std::vector
help me
How to deserialize an array containing pointers ,such as std::vector<point2d*> points from json file