comparison Plugins/Samples/Common/DicomDatasetReader.h @ 2240:df47c45694ed

improvement
author Sebastien Jodogne <s.jodogne@gmail.com>
date Fri, 16 Dec 2016 17:50:51 +0100
parents 4f0a9a61d905
children a3a65de1840f
comparison
equal deleted inserted replaced
2239:15637de71fee 2240:df47c45694ed
55 std::string GetStringValue(const DicomPath& path, 55 std::string GetStringValue(const DicomPath& path,
56 const std::string& defaultValue) const; 56 const std::string& defaultValue) const;
57 57
58 std::string GetMandatoryStringValue(const DicomPath& path) const; 58 std::string GetMandatoryStringValue(const DicomPath& path) const;
59 59
60 int GetIntegerValue(const DicomPath& path) const; 60 bool GetIntegerValue(int& target,
61 const DicomPath& path) const;
61 62
62 unsigned int GetUnsignedIntegerValue(const DicomPath& path) const; 63 bool GetUnsignedIntegerValue(unsigned int& target,
64 const DicomPath& path) const;
63 65
64 float GetFloatValue(const DicomPath& path) const; 66 bool GetFloatValue(float& target,
67 const DicomPath& path) const;
65 68
66 double GetDoubleValue(const DicomPath& path) const; 69 bool GetDoubleValue(double& target,
70 const DicomPath& path) const;
67 }; 71 };
68 } 72 }