comparison Plugins/Samples/Common/FullOrthancDataset.h @ 2981:eff50153a7b3 db-changes

integration mainline->db-changes
author Sebastien Jodogne <s.jodogne@gmail.com>
date Thu, 06 Dec 2018 15:58:08 +0100
parents 1ab59dfd4afc
children 4e43e67f8ecf
comparison
equal deleted inserted replaced
2896:3fabf9a673f6 2981:eff50153a7b3
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 }