| 24 | } |
| 25 | |
| 26 | json_t* dataToJson() override { |
| 27 | json_t* rootJ = json_object(); |
| 28 | json_object_set_new(rootJ, "text", json_stringn(text.c_str(), text.size())); |
| 29 | return rootJ; |
| 30 | } |
| 31 | |
| 32 | void dataFromJson(json_t* rootJ) override { |
| 33 | json_t* textJ = json_object_get(rootJ, "text"); |