aboutsummaryrefslogtreecommitdiffstats
path: root/include/gpg/result_analyse/VerifyResultAnalyse.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/gpg/result_analyse/VerifyResultAnalyse.h')
-rw-r--r--include/gpg/result_analyse/VerifyResultAnalyse.h12
1 files changed, 9 insertions, 3 deletions
diff --git a/include/gpg/result_analyse/VerifyResultAnalyse.h b/include/gpg/result_analyse/VerifyResultAnalyse.h
index 1774ec2c..8d80a1b6 100644
--- a/include/gpg/result_analyse/VerifyResultAnalyse.h
+++ b/include/gpg/result_analyse/VerifyResultAnalyse.h
@@ -25,7 +25,7 @@
#ifndef GPGFRONTEND_VERIFYRESULTANALYSE_H
#define GPGFRONTEND_VERIFYRESULTANALYSE_H
-#include "gpg/GpgContext.h"
+#include "gpg/GpgConstants.h"
#include "gpg/model/GpgKeySignature.h"
#include "ResultAnalyse.h"
@@ -35,12 +35,18 @@ namespace GpgFrontend {
class VerifyResultAnalyse : public ResultAnalyse{
public:
- explicit VerifyResultAnalyse(gpgme_error_t error, gpgme_verify_result_t result);
+ explicit VerifyResultAnalyse(GpgError error, GpgVerifyResult result);
private:
- bool printSigner(QTextStream &stream, gpgme_signature_t sign);
+ void do_analyse();
+ private:
+
+ bool print_signer(QTextStream &stream, gpgme_signature_t sign);
+
+ GpgError error;
+ GpgVerifyResult result;
};
}