12345678910111213141516171819202122232425262728293031323334 |
- /****************************************************************
- * DicomDataSet.hpp
- ****************************************************************/
- #ifndef _INCLUDE_DICOM_DATASET_
- #define _INCLUDE_DICOM_DATASET_
- //////////////////////////////////////////////////////////////////////
- // class DICOMCommandSet
- class DICOM_API DICOMCommandSet : public DICOMVRSet
- {
- public:
- PCONTEXTID PresentationContextID;
- DICOMCommandSet () { PresentationContextID = 0; }
- DICOMCommandSet (const DICOMVRSet & VRSet) : DICOMVRSet (VRSet) { PresentationContextID = 0; }
- };
- //////////////////////////////////////////////////////////////////////
- // class DICOMDataSet
- class DICOM_API DICOMDataSet : public DICOMVRSet
- {
- public:
- PCONTEXTID PresentationContextID;
- DICOMDataSet () { PresentationContextID = 0; }
- DICOMDataSet (const DICOMVRSet & VRSet) : DICOMVRSet (VRSet) { PresentationContextID = 0; }
- };
- #endif
|