| 24 | } |
| 25 | |
| 26 | void dataFromJson(json_t* rootJ) override { |
| 27 | json_t* widthJ = json_object_get(rootJ, "width"); |
| 28 | if (widthJ) |
| 29 | width = json_integer_value(widthJ); |
| 30 | } |
| 31 | }; |
| 32 | |
| 33 |
nothing calls this directly
no outgoing calls
no test coverage detected