summaryrefslogtreecommitdiffstats
path: root/libkdchart/kdchart_export.h
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2011-07-04 22:38:03 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2011-07-04 22:38:03 +0000
commitdadc34655c3ab961b0b0b94a10eaaba710f0b5e8 (patch)
tree99e72842fe687baea16376a147619b6048d7e441 /libkdchart/kdchart_export.h
downloadkmymoney-dadc34655c3ab961b0b0b94a10eaaba710f0b5e8.tar.gz
kmymoney-dadc34655c3ab961b0b0b94a10eaaba710f0b5e8.zip
Added kmymoney
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/applications/kmymoney@1239792 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'libkdchart/kdchart_export.h')
-rw-r--r--libkdchart/kdchart_export.h47
1 files changed, 47 insertions, 0 deletions
diff --git a/libkdchart/kdchart_export.h b/libkdchart/kdchart_export.h
new file mode 100644
index 0000000..16d8b21
--- /dev/null
+++ b/libkdchart/kdchart_export.h
@@ -0,0 +1,47 @@
+#ifndef KDCHART_EXPORT_H
+#define KDCHART_EXPORT_H
+
+#include <qglobal.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
+*/