MyBooks
widgets_export.h
Go to the documentation of this file.
1 #ifndef WIDGETS_GLOBALS_H
2 #define WIDGETS_GLOBALS_H
3 
4 #ifdef WIN32
5 
6  #ifndef STATIC_WIDGETS
7  #ifdef CUTEREPORT_WIDGET_EXPORTS
8  #define WIDGET_EXPORTS __declspec(dllexport)
9  #else
10  #define WIDGET_EXPORTS __declspec(dllimport)
11  #endif
12  #else
13  #define WIDGET_EXPORTS
14  #endif
15 
16 #else
17  #define WIDGET_EXPORTS
18 #endif
19 
20 #endif // WIDGETS_GLOBALS_H
21 
22