comparison Plugins/Samples/Common/FullOrthancDataset.h @ 2937:1ab59dfd4afc

clone FullOrthancDataSet + new dicom tags
author am@osimis.io
date Wed, 28 Nov 2018 14:36:33 +0100
parents 878b59270859
children 4e43e67f8ecf
comparison
equal deleted inserted replaced
2936:4b3929668358 2937:1ab59dfd4afc
63 virtual bool GetStringValue(std::string& result, 63 virtual bool GetStringValue(std::string& result,
64 const DicomPath& path) const; 64 const DicomPath& path) const;
65 65
66 virtual bool GetSequenceSize(size_t& size, 66 virtual bool GetSequenceSize(size_t& size,
67 const DicomPath& path) const; 67 const DicomPath& path) const;
68
69 FullOrthancDataset* Clone() const
70 {
71 return new FullOrthancDataset(this->root_);
72 }
68 }; 73 };
69 } 74 }