Qwt User's Guide
|
00001 /* -*- mode: C++ ; c-file-style: "stroustrup" -*- ***************************** 00002 * Qwt Widget Library 00003 * Copyright (C) 1997 Josef Wilgen 00004 * Copyright (C) 2002 Uwe Rathmann 00005 * 00006 * This library is free software; you can redistribute it and/or 00007 * modify it under the terms of the Qwt License, Version 1.0 00008 *****************************************************************************/ 00009 00010 #ifndef QWT_GLOBAL_H 00011 #define QWT_GLOBAL_H 00012 00013 #include <qglobal.h> 00014 00015 // QWT_VERSION is (major << 16) + (minor << 8) + patch. 00016 00017 #define QWT_VERSION 0x060103 00018 #define QWT_VERSION_STR "6.1.3" 00019 00020 #if defined(_MSC_VER) /* MSVC Compiler */ 00021 /* template-class specialization 'identifier' is already instantiated */ 00022 #pragma warning(disable: 4660) 00023 /* inherits via dominance */ 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