| 113 | } |
| 114 | |
| 115 | void mitk::Forms::to_json(ordered_json& j, const LinearScaleQuestion& q) |
| 116 | { |
| 117 | to_json(j, static_cast<const Question&>(q)); |
| 118 | |
| 119 | j["Range"] = q.GetRange(); |
| 120 | j["Labels"] = q.GetRangeLabels(); |
| 121 | } |
nothing calls this directly
no test coverage detected