diff options
author | Andre Heinecke <[email protected]> | 2016-08-25 12:29:41 +0000 |
---|---|---|
committer | Andre Heinecke <[email protected]> | 2016-08-25 12:29:41 +0000 |
commit | 94420b05775122b25885c66ac67f77c59d01644d (patch) | |
tree | 8b21ee1cfc0caf7a42416195d0b6afe53692f05e /lang/qt/src/job.cpp | |
parent | Cpp: Change firstSeen / lastSeen return values (diff) | |
download | gpgme-94420b05775122b25885c66ac67f77c59d01644d.tar.gz gpgme-94420b05775122b25885c66ac67f77c59d01644d.zip |
qt: Add WKSPublishJob
* lang/qt/src/Makefile.am: Add new files.
* lang/qt/src/job.cpp: Include moc / subclass stub.
* lang/qt/src/protocol.h: Add virtual for new job.
* lang/qt/src/protocol_p.h: Add job.
* lang/qt/src/wkspublishjob.h: Interface for WKSPublishJob.
* lang/qt/src/qgpgmewkspublishjob.cpp,
lang/qt/src/qgpgmewkspublishjob.h: New.
--
The Job was originally intended to be used with a SpawnEngine
Context but QProcess was a better fit for the job.
Usage is similar to the client tool. check, create, recieve.
Diffstat (limited to 'lang/qt/src/job.cpp')
-rw-r--r-- | lang/qt/src/job.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/lang/qt/src/job.cpp b/lang/qt/src/job.cpp index 8e506474..6b355a09 100644 --- a/lang/qt/src/job.cpp +++ b/lang/qt/src/job.cpp @@ -56,6 +56,7 @@ #include "adduseridjob.h" #include "specialjob.h" #include "keyformailboxjob.h" +#include "wkspublishjob.h" #include <QCoreApplication> #include <QDebug> @@ -122,6 +123,7 @@ make_job_subclass(RefreshKeysJob) make_job_subclass(AddUserIDJob) make_job_subclass(SpecialJob) make_job_subclass(KeyForMailboxJob) +make_job_subclass(WKSPublishJob) #undef make_job_subclass @@ -151,3 +153,4 @@ make_job_subclass(KeyForMailboxJob) #include "adduseridjob.moc" #include "specialjob.moc" #include "keyformailboxjob.moc" +#include "wkspublishjob.moc" |