| 62 | } |
| 63 | |
| 64 | void QmitkForm::SetForm(mitk::Forms::Form* form) |
| 65 | { |
| 66 | if (form == nullptr) |
| 67 | mitkThrow() << "Parameter \"form\" must point to a valid form!"; |
| 68 | |
| 69 | m_Form = form; |
| 70 | |
| 71 | this->CreateQuestionWidgets(); |
| 72 | this->Reset(); |
| 73 | } |
| 74 | |
| 75 | fs::path QmitkForm::GetResponsesPath() const |
| 76 | { |
no test coverage detected