| 15 | #include <nlohmann/json.hpp> |
| 16 | |
| 17 | mitk::LookupTableProperty::LookupTableProperty() |
| 18 | { |
| 19 | mitk::LookupTable::Pointer lut = mitk::LookupTable::New(); |
| 20 | this->SetLookupTable(lut); |
| 21 | } |
| 22 | |
| 23 | mitk::LookupTableProperty::LookupTableProperty(const LookupTableProperty &other) |
| 24 | : mitk::BaseProperty(other), m_LookupTable(other.m_LookupTable->Clone()) |
nothing calls this directly
no test coverage detected