| 42 | } |
| 43 | |
| 44 | void QuestionWithOtherOption::AddOtherResponse(const std::string& response) |
| 45 | { |
| 46 | if (!m_HasOtherOption) |
| 47 | mitkThrow() << "Adding \"Other\" response is disallowed!"; |
| 48 | |
| 49 | m_OtherResponse = response; |
| 50 | } |
| 51 | |
| 52 | void QuestionWithOtherOption::RemoveOtherResponse() |
| 53 | { |
no outgoing calls
no test coverage detected