123456789101112131415161718192021222324252627282930313233343536373839 |
- /* -*- mode: C++ ; c-file-style: "stroustrup" -*- *****************************
- * QwtPolar Widget Library
- * Copyright (C) 2008 Uwe Rathmann
- *
- * This library is free software; you can redistribute it and/or
- * modify it under the terms of the Qwt License, Version 1.0
- *****************************************************************************/
- #ifndef QWT_POLAR_GLOBAL_H
- #define QWT_POLAR_GLOBAL_H
- #include <qglobal.h>
- // QWT_POLAR_VERSION is (major << 16) + (minor << 8) + patch.
- #define QWT_POLAR_VERSION 0x010101
- #define QWT_POLAR_VERSION_STR "1.1.1"
- #if defined(_MSC_VER) /* MSVC Compiler */
- /* template-class specialization 'identifier' is already instantiated */
- #pragma warning(disable: 4660)
- #endif // _MSC_VER
- #ifdef QWT_POLAR_DLL
- #if defined(QWT_POLAR_MAKEDLL) // create DLL library
- #define QWT_POLAR_EXPORT Q_DECL_EXPORT
- #define QWT_POLAR_TEMPLATEDLL
- #else // use DLL library
- #define QWT_POLAR_EXPORT Q_DECL_IMPORT
- #endif
- #endif // QWT_POLAR_DLL
- #ifndef QWT_POLAR_EXPORT
- #define QWT_POLAR_EXPORT
- #endif
- #endif // QWT_POLAR_GLOBAL_H
|