DicomDataSet.hpp 913 B

12345678910111213141516171819202122232425262728293031323334
  1. /****************************************************************
  2. * DicomDataSet.hpp
  3. ****************************************************************/
  4. #ifndef _INCLUDE_DICOM_DATASET_
  5. #define _INCLUDE_DICOM_DATASET_
  6. //////////////////////////////////////////////////////////////////////
  7. // class DICOMCommandSet
  8. class DICOM_API DICOMCommandSet : public DICOMVRSet
  9. {
  10. public:
  11. PCONTEXTID PresentationContextID;
  12. DICOMCommandSet () { PresentationContextID = 0; }
  13. DICOMCommandSet (const DICOMVRSet & VRSet) : DICOMVRSet (VRSet) { PresentationContextID = 0; }
  14. };
  15. //////////////////////////////////////////////////////////////////////
  16. // class DICOMDataSet
  17. class DICOM_API DICOMDataSet : public DICOMVRSet
  18. {
  19. public:
  20. PCONTEXTID PresentationContextID;
  21. DICOMDataSet () { PresentationContextID = 0; }
  22. DICOMDataSet (const DICOMVRSet & VRSet) : DICOMVRSet (VRSet) { PresentationContextID = 0; }
  23. };
  24. #endif