diff Plugins/Engine/IPluginServiceProvider.h @ 1632:eb8fbcf008b5

fix build with plugins disabled
author Sebastien Jodogne <s.jodogne@gmail.com>
date Mon, 21 Sep 2015 14:05:06 +0200
parents ffd23c0104af
children b1291df2f780
line wrap: on
line diff
--- a/Plugins/Engine/IPluginServiceProvider.h	Mon Sep 21 13:33:50 2015 +0200
+++ b/Plugins/Engine/IPluginServiceProvider.h	Mon Sep 21 14:05:06 2015 +0200
@@ -32,6 +32,8 @@
 
 #pragma once
 
+#if ORTHANC_PLUGINS_ENABLED == 1
+
 #include "../Include/orthanc/OrthancCPlugin.h"
 
 #include "SharedLibrary.h"
@@ -50,3 +52,5 @@
                                const void* parameters) = 0;
   };
 }
+
+#endif