comparison Core/DicomFormat/DicomValue.h @ 1761:f4286d99ee0a db-changes

fix sample database plugin
author Sebastien Jodogne <s.jodogne@gmail.com>
date Thu, 29 Oct 2015 11:22:48 +0100
parents 15a788a63846
children b1291df2f780
comparison
equal deleted inserted replaced
1760:51db4a25a741 1761:f4286d99ee0a
76 return type_ == Type_Binary; 76 return type_ == Type_Binary;
77 } 77 }
78 78
79 DicomValue* Clone() const; 79 DicomValue* Clone() const;
80 80
81 #if !defined(ORTHANC_ENABLE_BASE64) || ORTHANC_ENABLE_BASE64 == 1
81 void FormatDataUriScheme(std::string& target, 82 void FormatDataUriScheme(std::string& target,
82 const std::string& mime) const; 83 const std::string& mime) const;
83 84
84 void FormatDataUriScheme(std::string& target) const 85 void FormatDataUriScheme(std::string& target) const
85 { 86 {
86 FormatDataUriScheme(target, "application/octet-stream"); 87 FormatDataUriScheme(target, "application/octet-stream");
87 } 88 }
89 #endif
88 }; 90 };
89 } 91 }