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