diff options
| author | Werner Koch <[email protected]> | 2023-01-31 06:59:27 +0000 | 
|---|---|---|
| committer | Werner Koch <[email protected]> | 2023-01-31 06:59:50 +0000 | 
| commit | 3cdcfa33f7496c3130797224f8ae327732409460 (patch) | |
| tree | a51d92d3455d969c60b33d63e9e6c60670575c1a /lang/qt/src/protocol.h | |
| parent | cpp: Support all encryption flags (diff) | |
| parent | qt: Add job for creating signed archives (diff) | |
| download | gpgme-3cdcfa33f7496c3130797224f8ae327732409460.tar.gz gpgme-3cdcfa33f7496c3130797224f8ae327732409460.zip | |
Merge branch 'ikloecker/t6342-gpgtar' into master
--
Solved conflicts:
	NEWS
	lang/cpp/src/context.cpp
	lang/cpp/src/context.h
Diffstat (limited to '')
| -rw-r--r-- | lang/qt/src/protocol.h | 5 | 
1 files changed, 5 insertions, 0 deletions
| diff --git a/lang/qt/src/protocol.h b/lang/qt/src/protocol.h index 019633a8..0f3e5b28 100644 --- a/lang/qt/src/protocol.h +++ b/lang/qt/src/protocol.h @@ -50,8 +50,10 @@ class ImportFromKeyserverJob;  class ExportJob;  class DownloadJob;  class DeleteJob; +class EncryptArchiveJob;  class EncryptJob;  class DecryptJob; +class SignArchiveJob;  class SignJob;  class SignKeyJob;  class VerifyDetachedJob; @@ -189,6 +191,9 @@ public:       * OpenPGP key.       */      virtual SetPrimaryUserIDJob *setPrimaryUserIDJob() const = 0; + +    virtual EncryptArchiveJob *encryptArchiveJob(bool armor = false) const = 0; +    virtual SignArchiveJob *signArchiveJob(bool armor = false) const = 0;  };  /** Obtain a reference to the OpenPGP Protocol. | 
