| 363 | } |
| 364 | |
| 365 | std::string mitk::DICOMImageBlockDescriptor::GetPropertyAsString( const std::string& key ) const |
| 366 | { |
| 367 | this->UpdateImageDescribingProperties(); |
| 368 | const mitk::BaseProperty::Pointer property = m_PropertyList->GetProperty( key ); |
| 369 | if ( property.IsNotNull() ) |
| 370 | { |
| 371 | return property->GetValueAsString(); |
| 372 | } |
| 373 | else |
| 374 | { |
| 375 | return std::string( "" ); |
| 376 | } |
| 377 | } |
| 378 | |
| 379 | mitk::IOVolumeSplitReason::ConstPointer mitk::DICOMImageBlockDescriptor::GetSplitReason() const |
| 380 | { |
no test coverage detected