blob: afa340f77f7ae9bbfa6c2041048b45fb00db569d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
|
#ifndef KDCHART_EXPORT_H
#define KDCHART_EXPORT_H
#include <tqglobal.h>
#if 0
#include <koffice_export.h>
#else
#if defined(Q_OS_WIN32) && defined(KDCHART_DLL)
#define DLL_EXPORT __declspec(dllexport)
#define DLL_IMPORT __declspec(dllimport)
#else
#define DLL_EXPORT
#define DLL_IMPORT
#endif
#if defined(KDCHART_DLL)
#define KDCHART_EXPORT DLL_EXPORT
#else
#define KDCHART_EXPORT DLL_IMPORT
#endif
#endif
#endif // #if 1
/*
How to make a KD Chart DLL rather than linking statically:
1. We have an #include <kdchart_export.h> statement in all
of our public KD Chart header files
2. We have the KDCHART_EXPORT macro added to all of our
public classes.
So e.g. the class header reads:
class KDCHART_EXPORT KDChartWidget : public QWidget
{
}
3. In order to create a DLL
just add "CONFIG += dll" to the qmake command line or to the [KD Chart directory]/src/src.pro file
*/
|