| 30 | } |
| 31 | |
| 32 | void dataFromJson(json_t* rootJ) override { |
| 33 | json_t* textJ = json_object_get(rootJ, "text"); |
| 34 | if (textJ) |
| 35 | text = json_string_value(textJ); |
| 36 | dirty = true; |
| 37 | } |
| 38 | }; |
| 39 | |
| 40 |
nothing calls this directly
no outgoing calls
no test coverage detected