QWT API (English) 7.3.0
Qt Widget Library for Technical Applications - English API Documentation
Loading...
Searching...
No Matches
qwtcore_global.h
1/******************************************************************************
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 QWTCORE_GLOBAL_H
11#define QWTCORE_GLOBAL_H
12
13#include "qwt_global.h"
14
15#ifdef QWTCORE_DLL
16
17#if defined(QWTCORE_MAKEDLL) // create a qwtcore DLL library
18#define QWTCORE_EXPORT Q_DECL_EXPORT
19#else // use a qwtcore DLL library
20#define QWTCORE_EXPORT Q_DECL_IMPORT
21#endif
22
23#endif // QWTCORE_DLL
24
25#ifndef QWTCORE_EXPORT
26#define QWTCORE_EXPORT
27#endif
28
29#endif