| 117 | } |
| 118 | |
| 119 | json_t* dataToJson() override { |
| 120 | json_t* rootJ = json_object(); |
| 121 | json_object_set_new(rootJ, "normalledVoltageIdx", json_integer(normalledVoltageIdx)); |
| 122 | return rootJ; |
| 123 | } |
| 124 | |
| 125 | void dataFromJson(json_t* rootJ) override { |
| 126 | json_t* normalledVoltageIdxJ = json_object_get(rootJ, "normalledVoltageIdx"); |
nothing calls this directly
no outgoing calls
no test coverage detected