comparison Framework/StoneInitialization.h @ 699:5c551f078c18 refactor-viewport-controller

Merge from default
author Benjamin Golinvaux <bgo@osimis.io>
date Fri, 17 May 2019 09:20:46 +0200
parents b8b2bb75fde1
children 358461330978 2d8ab34c8c91
comparison
equal deleted inserted replaced
698:8b6adfb62a2f 699:5c551f078c18
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 }