comparison OrthancStone/Sources/Toolbox/OrthancDatasets/IDicomDataset.h @ 1834:126522623e20

replaced OrthancStone::DicomPath by new class Orthanc::DicomPath from orthanc framework
author Sebastien Jodogne <s.jodogne@gmail.com>
date Thu, 10 Jun 2021 12:07:04 +0200
parents 9ac2a65d4172
children 3889ae96d2e9
comparison
equal deleted inserted replaced
1833:3c0996f028a1 1834:126522623e20
20 **/ 20 **/
21 21
22 22
23 #pragma once 23 #pragma once
24 24
25 #include "DicomPath.h" 25 #include <DicomFormat/DicomPath.h> // From Orthanc framework
26 26
27 #include <boost/noncopyable.hpp> 27 #include <boost/noncopyable.hpp>
28 #include <string> 28 #include <string>
29 29
30 namespace OrthancStone 30 namespace OrthancStone
35 virtual ~IDicomDataset() 35 virtual ~IDicomDataset()
36 { 36 {
37 } 37 }
38 38
39 virtual bool GetStringValue(std::string& result, 39 virtual bool GetStringValue(std::string& result,
40 const DicomPath& path) const = 0; 40 const Orthanc::DicomPath& path) const = 0;
41 41
42 virtual bool GetSequenceSize(size_t& size, 42 virtual bool GetSequenceSize(size_t& size,
43 const DicomPath& path) const = 0; 43 const Orthanc::DicomPath& path) const = 0;
44 }; 44 };
45 } 45 }