Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010 #ifndef QWT_GLOBAL_H
00011 #define QWT_GLOBAL_H
00012
00013 #include <qglobal.h>
00014
00015
00016
00017 #define QWT_VERSION 0x060200
00018 #define QWT_VERSION_STR "6.2.0"
00019
00020 #if defined(_MSC_VER)
00021
00022 #pragma warning(disable: 4660)
00023
00024 #pragma warning(disable: 4250)
00025 #endif // _MSC_VER
00026
00027 #ifdef QWT_DLL
00028
00029 #if defined(QWT_MAKEDLL) // create a Qwt DLL library
00030 #define QWT_EXPORT Q_DECL_EXPORT
00031 #else // use a Qwt DLL library
00032 #define QWT_EXPORT Q_DECL_IMPORT
00033 #endif
00034
00035 #endif // QWT_DLL
00036
00037 #ifndef QWT_EXPORT
00038 #define QWT_EXPORT
00039 #endif
00040
00041 #endif