在Qt Framework中将我的自定义对象转换为json字符串

时间:2015-06-15 11:04:18

标签: c++ json qt

有没有办法将我的自定义对象转换为json?

class EntityRepetitive: public EntityTreatment
{
 public:
 EntityRepetitive(int channelNum,float power,float freq,int  numOfPulses,float waitTime, int numOfTrains);
 ~EntityRepetitive();

 int channelNum;
 float power;
 float freq;
 int numOfPulses;
 float waitTime;
 int numOfTrains;
};

我的cpp文件:

er = new EntityRepetitive(channelNum,power,freq,numOfPulses,waitTime,numOfTrains);

我想将er转换为JsonString,反之亦然。

0 个答案:

没有答案