source: ntrip/trunk/BNC/qwt/qwt_global.h@ 9208

Last change on this file since 9208 was 8127, checked in by stoecker, 7 years ago

update qwt and qwtpolar, many QT5 fixes (unfinished)

File size: 1.1 KB
RevLine 
[4271]1/* -*- mode: C++ ; c-file-style: "stroustrup" -*- *****************************
2 * Qwt Widget Library
3 * Copyright (C) 1997 Josef Wilgen
4 * Copyright (C) 2002 Uwe Rathmann
5 *
6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the Qwt License, Version 1.0
8 *****************************************************************************/
9
10#ifndef QWT_GLOBAL_H
11#define QWT_GLOBAL_H
12
13#include <qglobal.h>
14
15// QWT_VERSION is (major << 16) + (minor << 8) + patch.
16
[8127]17#define QWT_VERSION 0x060104
18#define QWT_VERSION_STR "6.1.4"
[4271]19
20#if defined(_MSC_VER) /* MSVC Compiler */
21/* template-class specialization 'identifier' is already instantiated */
22#pragma warning(disable: 4660)
[8127]23/* inherits via dominance */
24#pragma warning(disable: 4250)
[4271]25#endif // _MSC_VER
26
27#ifdef QWT_DLL
28
29#if defined(QWT_MAKEDLL) // create a Qwt DLL library
[8127]30#define QWT_EXPORT Q_DECL_EXPORT
[4271]31#else // use a Qwt DLL library
[8127]32#define QWT_EXPORT Q_DECL_IMPORT
[4271]33#endif
34
35#endif // QWT_DLL
36
37#ifndef QWT_EXPORT
38#define QWT_EXPORT
39#endif
40
41#endif
Note: See TracBrowser for help on using the repository browser.