/usr/include/vtkDICOMMetaDataAdapter.h is in libvtk-dicom-dev 0.7.4-2.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 | /*=========================================================================
Program: DICOM for VTK
Copyright (c) 2012-2015 David Gobbi
All rights reserved.
See Copyright.txt or http://dgobbi.github.io/bsd3.txt for details.
This software is distributed WITHOUT ANY WARRANTY; without even
the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
PURPOSE. See the above copyright notice for more information.
=========================================================================*/
#ifndef vtkDICOMMetaDataAdapter_h
#define vtkDICOMMetaDataAdapter_h
#include "vtkDICOMModule.h" // For export macro
#include "vtkDICOMTag.h"
class vtkDICOMMetaData;
class vtkDICOMValue;
//! An adapter to make multi-frame data look like multi-file data.
/*!
* The vtkDICOMMetaDataAdapter object makes an enhanced multi-frame
* DICOM data set appear to be a series of data sets. Whenever the
* caller requests and attribute from a specific instance, the attribute
* is instead pulled from the PerFrame item for a specific frame.
* If constructed from a metadata object that is not an enhanced
* multi-frame dataset, it simply acts as a pass-through.
*/
class VTKDICOM_EXPORT vtkDICOMMetaDataAdapter
{
public:
//@{
//! Construct an adapter for the given meta data object.
vtkDICOMMetaDataAdapter(vtkDICOMMetaData *meta);
//! Destructor release the reference to the meta data.
~vtkDICOMMetaDataAdapter();
//@}
//@{
//! Get the number of instances (i.e. files).
/*!
* For an enhanced multi-frame data set, this will return the
* number of frames. For a non-enhanced data set, it returns
* the number of instances in the series.
*/
int GetNumberOfInstances() const { return this->NumberOfInstances; }
//@}
//@{
//! Check whether an attribute is present in the metadata.
/*!
* For an enhanced multi-frame data set, this will search the Shared
* and PerFrameFunctionGroupSequence in addition to searching the basic
* data set attributes.
*/
bool HasAttribute(vtkDICOMTag tag) const;
//! Get an attribute value.
/*!
* For an enhanced multi-frame data set, this will first try to
* retrieve the attribute from the SharedFunctionalGroupSequence.
*/
const vtkDICOMValue &GetAttributeValue(vtkDICOMTag tag) const;
//! Get an attribute value for the specified file index.
/*!
* For an enhanced multi-frame data set, this will search the PerFrame
* attributes, then the Shared attributes, and finally the basic
* data set attributes.
*/
const vtkDICOMValue &GetAttributeValue(int idx, vtkDICOMTag tag) const;
//! Resolve a private tag.
/*!
* For an enhanced multi-frame data set, this will search the PerFrame
* attributes, then the Shared attributes, and finally the basic
* data set attributes.
*/
vtkDICOMTag ResolvePrivateTag(vtkDICOMTag ptag, const std::string& creator);
//@}
//@{
//! Make the adapter look like a pointer (for convenience).
const vtkDICOMMetaDataAdapter* operator->() const { return this; }
vtkDICOMMetaDataAdapter* operator->() { return this; }
//@}
private:
vtkDICOMMetaData *Meta;
const vtkDICOMValue *PerFrame;
const vtkDICOMValue *Shared;
vtkDICOMValue *NullValue;
int NumberOfInstances;
};
#endif /* vtkDICOMMetaDataAdapter_h */
// VTK-HeaderTest-Exclude: vtkDICOMMetaDataAdapter.h
|