JsonCpp:如何将对象转换/序列化为Json :: Value

问题描述

是否可以在jsonCpp中将对象转换/序列化为Json::Value

例如: 我上课

class MyClass
{
   std::string str1;
   std::string str2;
   std::unordered_map<std::string,std::string> map1;
   std::unordered_map<std::string,std::string> map2;
   bool boo1;

   void func1();
   void func2();
}

MyClass myObject;

我想将myObject更改为Json::Value,也许是类似的

Json::Value myJson = JsonParse(myObject) //not a real code

解决方法

暂无找到可以解决该程序问题的有效方法,小编努力寻找整理中!

如果你已经找到好的解决方法,欢迎将解决方案带上本链接一起发送给小编。

小编邮箱:dio#foxmail.com (将#修改为@)