Medical Imaging Interaction Toolkit  2016.11.0
Medical Imaging Interaction Toolkit
org_mitk_gui_common_Export.h
Go to the documentation of this file.
1 
2 
3 // .NAME __org_mitk_gui_common_Export - manage Windows system differences
4 // .SECTION Description
5 // The __org_mitk_gui_common_Export captures some system differences between Unix
6 // and Windows operating systems.
7 
8 #ifndef __org_mitk_gui_common_Export_h
9 #define __org_mitk_gui_common_Export_h
10 
11 #include <QtGlobal>
12 
13 #if defined(Q_OS_WIN) || defined(Q_OS_SYMBIAN)
14 # if defined(org_mitk_gui_common_EXPORTS)
15 # define MITK_GUI_COMMON_PLUGIN Q_DECL_EXPORT
16 # else
17 # define MITK_GUI_COMMON_PLUGIN Q_DECL_IMPORT
18 # endif
19 #endif
20 
21 #if !defined(MITK_GUI_COMMON_PLUGIN)
22 //# if defined(CTK_SHARED)
23 # define MITK_GUI_COMMON_PLUGIN Q_DECL_EXPORT
24 //# else
25 //# define MITK_GUI_COMMON_PLUGIN
26 //# endif
27 #endif
28 
29 #endif
30