| 18 | } |
| 19 | |
| 20 | json_t* dataToJson() override { |
| 21 | json_t* rootJ = json_object(); |
| 22 | json_object_set_new(rootJ, "width", json_integer(width)); |
| 23 | return rootJ; |
| 24 | } |
| 25 | |
| 26 | void dataFromJson(json_t* rootJ) override { |
| 27 | json_t* widthJ = json_object_get(rootJ, "width"); |
nothing calls this directly
no outgoing calls
no test coverage detected