comparison OrthancFramework/Sources/HttpServer/HttpToolbox.cpp @ 4332:17d209a3f397

fix missing symbols for stone
author Sebastien Jodogne <s.jodogne@gmail.com>
date Wed, 25 Nov 2020 21:42:50 +0100
parents a01b1c9cbef4
children d9473bd5ed43
comparison
equal deleted inserted replaced
4331:072adf3c3409 4332:17d209a3f397
23 #include "../PrecompiledHeaders.h" 23 #include "../PrecompiledHeaders.h"
24 #include "HttpToolbox.h" 24 #include "HttpToolbox.h"
25 25
26 #include <string.h> 26 #include <string.h>
27 27
28 #if ORTHANC_SANDBOXED != 1 28 #if (ORTHANC_ENABLE_MONGOOSE == 1 || ORTHANC_ENABLE_CIVETWEB == 1)
29 # include "IHttpHandler.h" 29 # include "IHttpHandler.h"
30 #endif 30 #endif
31 31
32 32
33 namespace Orthanc 33 namespace Orthanc
182 } 182 }
183 } 183 }
184 184
185 185
186 186
187 #if ORTHANC_SANDBOXED != 1 187 #if (ORTHANC_ENABLE_MONGOOSE == 1 || ORTHANC_ENABLE_CIVETWEB == 1)
188 bool HttpToolbox::SimpleGet(std::string& result, 188 bool HttpToolbox::SimpleGet(std::string& result,
189 IHttpHandler& handler, 189 IHttpHandler& handler,
190 RequestOrigin origin, 190 RequestOrigin origin,
191 const std::string& uri, 191 const std::string& uri,
192 const Arguments& httpHeaders) 192 const Arguments& httpHeaders)