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 0x060000
00018 #define QWT_VERSION_STR "6.0.0-svn"
00019
00020 #if defined(Q_WS_WIN) || defined(Q_WS_S60)
00021
00022 #if defined(_MSC_VER)
00023
00024 #pragma warning(disable: 4660)
00025 #endif // _MSC_VER
00026
00027 #ifdef QWT_DLL
00028
00029 #if defined(QWT_MAKEDLL) // create a Qwt DLL library
00030 #define QWT_EXPORT __declspec(dllexport)
00031 #define QWT_TEMPLATEDLL
00032 #else // use a Qwt DLL library
00033 #define QWT_EXPORT __declspec(dllimport)
00034 #endif
00035
00036 #endif // QWT_DLL
00037
00038 #endif // Q_WS_WIN || Q_WS_S60
00039
00040 #ifndef QWT_EXPORT
00041 #define QWT_EXPORT
00042 #endif
00043
00044
00045
00046 #endif