aboutsummaryrefslogtreecommitdiffstats
path: root/lang/qt/src/signencryptjob_p.h
diff options
context:
space:
mode:
Diffstat (limited to 'lang/qt/src/signencryptjob_p.h')
-rw-r--r--lang/qt/src/signencryptjob_p.h10
1 files changed, 10 insertions, 0 deletions
diff --git a/lang/qt/src/signencryptjob_p.h b/lang/qt/src/signencryptjob_p.h
index 85afae26..600d752b 100644
--- a/lang/qt/src/signencryptjob_p.h
+++ b/lang/qt/src/signencryptjob_p.h
@@ -36,12 +36,22 @@
#include "job_p.h"
+#include <key.h>
+
namespace QGpgME
{
struct SignEncryptJobPrivate : public JobPrivate
{
+ // used by start() functions
QString m_fileName;
+
+ // used by startIt()
+ std::vector<GpgME::Key> m_signers;
+ std::vector<GpgME::Key> m_recipients;
+ QString m_inputFilePath;
+ QString m_outputFilePath;
+ GpgME::Context::EncryptionFlags m_encryptionFlags = GpgME::Context::EncryptFile;
};
}