comparison OrthancServer/ServerContext.h @ 1763:f7014cca73c7

integration db-changes->mainline
author Sebastien Jodogne <s.jodogne@gmail.com>
date Thu, 29 Oct 2015 12:45:20 +0100
parents 318c2e83c2bd
children 776573e592da
comparison
equal deleted inserted replaced
1743:8fc1d096aa38 1763:f7014cca73c7
45 #include "LuaScripting.h" 45 #include "LuaScripting.h"
46 #include "ParsedDicomFile.h" 46 #include "ParsedDicomFile.h"
47 #include "Scheduler/ServerScheduler.h" 47 #include "Scheduler/ServerScheduler.h"
48 #include "ServerIndex.h" 48 #include "ServerIndex.h"
49 #include "OrthancHttpHandler.h" 49 #include "OrthancHttpHandler.h"
50 #include "Search/LookupResource.h"
50 51
51 #include <boost/filesystem.hpp> 52 #include <boost/filesystem.hpp>
52 #include <boost/thread.hpp> 53 #include <boost/thread.hpp>
53 54
54 55
243 return httpHandler_; 244 return httpHandler_;
244 } 245 }
245 246
246 void Stop(); 247 void Stop();
247 248
249 bool Apply(std::list<std::string>& result,
250 const ::Orthanc::LookupResource& lookup,
251 size_t maxResults);
252
248 253
249 /** 254 /**
250 * Management of the plugins 255 * Management of the plugins
251 **/ 256 **/
252 257
259 264
260 OrthancPlugins& GetPlugins(); 265 OrthancPlugins& GetPlugins();
261 #endif 266 #endif
262 267
263 bool HasPlugins() const; 268 bool HasPlugins() const;
264
265 }; 269 };
266 } 270 }