Mercurial > hg > orthanc
comparison OrthancServer/ServerContext.h @ 2136:dd609a99d39a
uniformization of the macro naming
author | Sebastien Jodogne <s.jodogne@gmail.com> |
---|---|
date | Wed, 09 Nov 2016 14:08:05 +0100 |
parents | 9329ba17a069 |
children | a3a65de1840f |
comparison
equal
deleted
inserted
replaced
2135:cadfe0a2a393 | 2136:dd609a99d39a |
---|---|
118 ReusableDicomUserConnection scu_; | 118 ReusableDicomUserConnection scu_; |
119 ServerScheduler scheduler_; | 119 ServerScheduler scheduler_; |
120 | 120 |
121 LuaScripting lua_; | 121 LuaScripting lua_; |
122 | 122 |
123 #if ORTHANC_PLUGINS_ENABLED == 1 | 123 #if ORTHANC_ENABLE_PLUGINS == 1 |
124 OrthancPlugins* plugins_; | 124 OrthancPlugins* plugins_; |
125 #endif | 125 #endif |
126 | 126 |
127 ServerListeners listeners_; | 127 ServerListeners listeners_; |
128 boost::recursive_mutex listenersMutex_; | 128 boost::recursive_mutex listenersMutex_; |
264 | 264 |
265 /** | 265 /** |
266 * Management of the plugins | 266 * Management of the plugins |
267 **/ | 267 **/ |
268 | 268 |
269 #if ORTHANC_PLUGINS_ENABLED == 1 | 269 #if ORTHANC_ENABLE_PLUGINS == 1 |
270 void SetPlugins(OrthancPlugins& plugins); | 270 void SetPlugins(OrthancPlugins& plugins); |
271 | 271 |
272 void ResetPlugins(); | 272 void ResetPlugins(); |
273 | 273 |
274 const OrthancPlugins& GetPlugins() const; | 274 const OrthancPlugins& GetPlugins() const; |