comparison OrthancServer/ServerContext.h @ 2617:912a767911b0 jobs

back to a single Lua context
author Sebastien Jodogne <s.jodogne@gmail.com>
date Tue, 22 May 2018 12:45:34 +0200
parents 2f3007bf0708
children e09021ddc00d
comparison
equal deleted inserted replaced
2616:2f3007bf0708 2617:912a767911b0
117 DicomCacheProvider provider_; 117 DicomCacheProvider provider_;
118 boost::mutex dicomCacheMutex_; 118 boost::mutex dicomCacheMutex_;
119 MemoryCache dicomCache_; 119 MemoryCache dicomCache_;
120 JobsEngine jobsEngine_; 120 JobsEngine jobsEngine_;
121 121
122 LuaScripting luaEventHandler_; 122 LuaScripting lua_;
123 123
124 #if ORTHANC_ENABLE_PLUGINS == 1 124 #if ORTHANC_ENABLE_PLUGINS == 1
125 OrthancPlugins* plugins_; 125 OrthancPlugins* plugins_;
126 #endif 126 #endif
127 127
255 const std::string& GetDefaultLocalApplicationEntityTitle() const 255 const std::string& GetDefaultLocalApplicationEntityTitle() const
256 { 256 {
257 return defaultLocalAet_; 257 return defaultLocalAet_;
258 } 258 }
259 259
260 LuaScripting& GetLuaEventHandler() 260 LuaScripting& GetLuaScripting()
261 { 261 {
262 return luaEventHandler_; 262 return lua_;
263 } 263 }
264 264
265 OrthancHttpHandler& GetHttpHandler() 265 OrthancHttpHandler& GetHttpHandler()
266 { 266 {
267 return httpHandler_; 267 return httpHandler_;