| 699 | ////////////////////////////////////////////////////////////////////////// |
| 700 | |
| 701 | void QmitkMxNMultiWidget::SaveLayout(std::ostream* outStream) |
| 702 | { |
| 703 | if (outStream == nullptr) |
| 704 | { |
| 705 | return; |
| 706 | } |
| 707 | *outStream << this->SerializeLayout().dump(4) << std::endl; |
| 708 | } |
| 709 | |
| 710 | void QmitkMxNMultiWidget::LoadLayout(const nlohmann::json* jsonData) |
| 711 | { |
nothing calls this directly
no test coverage detected