comparison Core/DicomFormat/DicomValue.h @ 2410:3590c936e56f

parsing numbers in DicomValue
author Sebastien Jodogne <s.jodogne@gmail.com>
date Fri, 29 Sep 2017 10:13:52 +0200
parents a3a65de1840f
children cad393b41bc3
comparison
equal deleted inserted replaced
2409:e4045b3c9772 2410:3590c936e56f
91 void FormatDataUriScheme(std::string& target) const 91 void FormatDataUriScheme(std::string& target) const
92 { 92 {
93 FormatDataUriScheme(target, "application/octet-stream"); 93 FormatDataUriScheme(target, "application/octet-stream");
94 } 94 }
95 #endif 95 #endif
96
97 bool ParseInteger32(int32_t& result) const;
98
99 bool ParseInteger64(int64_t& result) const;
100
101 bool ParseUnsignedInteger32(uint32_t& result) const;
102
103 bool ParseUnsignedInteger64(uint64_t& result) const;
104
105 bool ParseFloat(float& result) const;
106
107 bool ParseDouble(double& result) const;
96 }; 108 };
97 } 109 }