comparison Core/Toolbox.h @ 1648:a0a4fa28624c

fix
author Sebastien Jodogne <s.jodogne@gmail.com>
date Fri, 25 Sep 2015 11:33:55 +0200
parents b5bc87a7212d
children 1065401501fb
comparison
equal deleted inserted replaced
1647:fe458dde986e 1648:a0a4fa28624c
115 void DecodeBase64(std::string& result, 115 void DecodeBase64(std::string& result,
116 const std::string& data); 116 const std::string& data);
117 117
118 void EncodeBase64(std::string& result, 118 void EncodeBase64(std::string& result,
119 const std::string& data); 119 const std::string& data);
120
121 # if BOOST_HAS_REGEX == 1
122 void DecodeDataUriScheme(std::string& mime,
123 std::string& content,
124 const std::string& source);
125 # endif
120 #endif 126 #endif
121 127
122 std::string GetPathToExecutable(); 128 std::string GetPathToExecutable();
123 129
124 std::string GetDirectoryOfExecutable(); 130 std::string GetDirectoryOfExecutable();
151 157
152 void TokenizeString(std::vector<std::string>& result, 158 void TokenizeString(std::vector<std::string>& result,
153 const std::string& source, 159 const std::string& source,
154 char separator); 160 char separator);
155 161
156 #if BOOST_HAS_REGEX == 1
157 void DecodeDataUriScheme(std::string& mime,
158 std::string& content,
159 const std::string& source);
160 #endif
161
162 void MakeDirectory(const std::string& path); 162 void MakeDirectory(const std::string& path);
163 163
164 bool IsExistingFile(const std::string& path); 164 bool IsExistingFile(const std::string& path);
165 165
166 #if ORTHANC_PUGIXML_ENABLED == 1 166 #if ORTHANC_PUGIXML_ENABLED == 1