# HG changeset patch # User am@osimis.io # Date 1543412193 -3600 # Node ID 1ab59dfd4afca4f4ba7848586b1e4fbfdc542251 # Parent 4b3929668358fa93a62a3382f2c74798c6df86fa clone FullOrthancDataSet + new dicom tags diff -r 4b3929668358 -r 1ab59dfd4afc Core/DicomFormat/DicomTag.h --- a/Core/DicomFormat/DicomTag.h Wed Nov 28 14:36:09 2018 +0100 +++ b/Core/DicomFormat/DicomTag.h Wed Nov 28 14:36:33 2018 +0100 @@ -183,6 +183,9 @@ static const DicomTag DICOM_TAG_VIEW_POSITION(0x0018, 0x5101); static const DicomTag DICOM_TAG_MANUFACTURER(0x0008, 0x0070); static const DicomTag DICOM_TAG_PATIENT_ORIENTATION(0x0020, 0x0020); + static const DicomTag DICOM_TAG_PATIENT_COMMENTS(0x0010, 0x4000); + static const DicomTag DICOM_TAG_PATIENT_SPECIES_DESCRIPTION(0x0010, 0x2201); + static const DicomTag DICOM_TAG_STUDY_COMMENTS(0x0032, 0x4000); // Tags used within the Stone of Orthanc static const DicomTag DICOM_TAG_FRAME_INCREMENT_POINTER(0x0028, 0x0009); diff -r 4b3929668358 -r 1ab59dfd4afc Plugins/Samples/Common/FullOrthancDataset.h --- a/Plugins/Samples/Common/FullOrthancDataset.h Wed Nov 28 14:36:09 2018 +0100 +++ b/Plugins/Samples/Common/FullOrthancDataset.h Wed Nov 28 14:36:33 2018 +0100 @@ -65,5 +65,10 @@ virtual bool GetSequenceSize(size_t& size, const DicomPath& path) const; + + FullOrthancDataset* Clone() const + { + return new FullOrthancDataset(this->root_); + } }; }