Medical Imaging Interaction Toolkit  2023.12.99-7272c57d
Medical Imaging Interaction Toolkit
org_mitk_core_jobs_Export.h
Go to the documentation of this file.
1 
2 
3 // .NAME __org_mitk_core_jobs_Export - manage Windows system differences
4 // .SECTION Description
5 // The __org_mitk_core_jobs_Export captures some system differences between Unix
6 // and Windows operating systems.
7 
8 #ifndef __org_mitk_core_jobs_Export_h
9 #define __org_mitk_core_jobs_Export_h
10 
11 #include "ctkCompatibility_p.h"
12 #include "ctkCompilerDetections_p.h"
13 
14 #include <QtGlobal>
15 
16 #if defined(Q_OS_WIN) || defined(Q_OS_SYMBIAN)
17 # if defined(org_mitk_core_jobs_EXPORTS)
18 # define MITK_JOBS_EXPORT Q_DECL_EXPORT
19 # else
20 # define MITK_JOBS_EXPORT Q_DECL_IMPORT
21 # endif
22 #endif
23 
24 #if !defined(MITK_JOBS_EXPORT)
25 //# if defined(CTK_SHARED)
26 # define MITK_JOBS_EXPORT Q_DECL_EXPORT
27 //# else
28 //# define MITK_JOBS_EXPORT
29 //# endif
30 #endif
31 
32 
33 
34 #endif
35