| 100 | } |
| 101 | |
| 102 | bool mitk::AnnotationProperty::FromJSON(const nlohmann::json& j) |
| 103 | { |
| 104 | this->SetLabel(j["Label"].get<std::string>()); |
| 105 | this->SetPosition(j["Position"].get<Point3D>()); |
| 106 | return true; |
| 107 | } |
nothing calls this directly
no test coverage detected