diff options
author | Andre Heinecke <[email protected]> | 2016-08-11 15:38:36 +0000 |
---|---|---|
committer | Andre Heinecke <[email protected]> | 2016-08-11 16:00:14 +0000 |
commit | 59e2251a083b0ed61b3ab6d47015cef7cc6ceb05 (patch) | |
tree | 29f84e0d91c966b6de146b09a53bdf40347db196 /lang/qt/src/cryptoconfig.h | |
parent | Qt: Add KeyForMailboxJob (diff) | |
download | gpgme-59e2251a083b0ed61b3ab6d47015cef7cc6ceb05.tar.gz gpgme-59e2251a083b0ed61b3ab6d47015cef7cc6ceb05.zip |
Qt: Ensure all public classes are exported
* src/abstractimportjob.h,
src/cryptoconfig.h,
src/deletejob.h,
src/exportjob.h,
src/importfromkeyserverjob.h,
src/importjob.h,
src/keygenerationjob.h,
src/keylistjob.h,
src/listallkeysjob.h,
src/refreshkeysjob.h,
src/signencryptjob.h,
src/specialjob.h,
src/verifydetachedjob.h: Export classes.
--
This is an adoption of kde's libkleo commit: d6a71a4e
Thanks [email protected]
Diffstat (limited to '')
-rw-r--r-- | lang/qt/src/cryptoconfig.h | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/lang/qt/src/cryptoconfig.h b/lang/qt/src/cryptoconfig.h index 858dbb72..c3f0c7e3 100644 --- a/lang/qt/src/cryptoconfig.h +++ b/lang/qt/src/cryptoconfig.h @@ -34,6 +34,7 @@ #ifndef CRYPTOCONFIG_H #define CRYPTOCONFIG_H +#include "qgpgme_export.h" #ifdef __cplusplus /* we read this file from a C compiler, and are only interested in the * enums... */ @@ -50,7 +51,7 @@ namespace QGpgME /** * Description of a single option */ -class CryptoConfigEntry +class QGPGME_EXPORT CryptoConfigEntry { public: @@ -252,7 +253,7 @@ public: /** * Group containing a set of config options */ -class CryptoConfigGroup +class QGPGME_EXPORT CryptoConfigGroup { public: @@ -301,7 +302,7 @@ public: /** * Crypto config for one component (e.g. gpg-agent, dirmngr etc.) */ -class CryptoConfigComponent +class QGPGME_EXPORT CryptoConfigComponent { public: @@ -341,7 +342,7 @@ public: /** * Main interface to crypto configuration. */ -class CryptoConfig +class QGPGME_EXPORT CryptoConfig { public: |