comparison Framework/StoneInitialization.h @ 663:b8b2bb75fde1

fix to include Stone within an Orthanc plugin
author Sebastien Jodogne <s.jodogne@gmail.com>
date Wed, 15 May 2019 11:51:22 +0200
parents 0c4c0693b97c
children 358461330978 2d8ab34c8c91
comparison
equal deleted inserted replaced
662:794278160a3f 663:b8b2bb75fde1
19 **/ 19 **/
20 20
21 21
22 #pragma once 22 #pragma once
23 23
24 #include <Core/Logging.h>
25
24 namespace OrthancStone 26 namespace OrthancStone
25 { 27 {
28 #if ORTHANC_ENABLE_LOGGING_PLUGIN == 1
29 void StoneInitialize(OrthancPluginContext* context);
30 #else
26 void StoneInitialize(); 31 void StoneInitialize();
32 #endif
27 33
28 void StoneFinalize(); 34 void StoneFinalize();
29 } 35 }