| 93 | } |
| 94 | |
| 95 | void mitk::Forms::to_json(ordered_json& j, const QuestionWithOtherOption& q) |
| 96 | { |
| 97 | to_json(j, static_cast<const QuestionWithOptions&>(q)); |
| 98 | |
| 99 | if (q.HasOtherOption()) |
| 100 | j["Other"] = true; |
| 101 | } |
nothing calls this directly
no test coverage detected