comparison OrthancStone/Sources/Toolbox/OrthancDatasets/DicomDatasetReader.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
40 const IDicomDataset& GetDataset() const 40 const IDicomDataset& GetDataset() const
41 { 41 {
42 return dataset_; 42 return dataset_;
43 } 43 }
44 44
45 std::string GetStringValue(const DicomPath& path, 45 std::string GetStringValue(const Orthanc::DicomPath& path,
46 const std::string& defaultValue) const; 46 const std::string& defaultValue) const;
47 47
48 std::string GetMandatoryStringValue(const DicomPath& path) const; 48 std::string GetMandatoryStringValue(const Orthanc::DicomPath& path) const;
49 49
50 bool GetIntegerValue(int& target, 50 bool GetIntegerValue(int& target,
51 const DicomPath& path) const; 51 const Orthanc::DicomPath& path) const;
52 52
53 bool GetUnsignedIntegerValue(unsigned int& target, 53 bool GetUnsignedIntegerValue(unsigned int& target,
54 const DicomPath& path) const; 54 const Orthanc::DicomPath& path) const;
55 55
56 bool GetFloatValue(float& target, 56 bool GetFloatValue(float& target,
57 const DicomPath& path) const; 57 const Orthanc::DicomPath& path) const;
58 58
59 bool GetDoubleValue(double& target, 59 bool GetDoubleValue(double& target,
60 const DicomPath& path) const; 60 const Orthanc::DicomPath& path) const;
61 }; 61 };
62 } 62 }