diff options
author | Saturneric <[email protected]> | 2021-09-04 07:18:45 +0000 |
---|---|---|
committer | Saturneric <[email protected]> | 2021-09-04 07:18:45 +0000 |
commit | 4d9024347b0780afb955f0dbbda5d38907fe5200 (patch) | |
tree | 268022cbb9be8d7ca21b8dc7ae5f7834bd3f03ac /include/gpg/result_analyse/SignResultAnalyse.h | |
parent | Modified VerifyResultAnalyse (diff) | |
download | GpgFrontend-4d9024347b0780afb955f0dbbda5d38907fe5200.tar.gz GpgFrontend-4d9024347b0780afb955f0dbbda5d38907fe5200.zip |
Modified ResultAnalyse.
Add Test.
Diffstat (limited to 'include/gpg/result_analyse/SignResultAnalyse.h')
-rw-r--r-- | include/gpg/result_analyse/SignResultAnalyse.h | 25 |
1 files changed, 18 insertions, 7 deletions
diff --git a/include/gpg/result_analyse/SignResultAnalyse.h b/include/gpg/result_analyse/SignResultAnalyse.h index fdff305d..c837e957 100644 --- a/include/gpg/result_analyse/SignResultAnalyse.h +++ b/include/gpg/result_analyse/SignResultAnalyse.h @@ -28,17 +28,28 @@ #include "GpgFrontend.h" #include "ResultAnalyse.h" -#include "gpg/GpgContext.h" +#include "gpg/GpgConstants.h" -class SignResultAnalyse : public ResultAnalyse { -Q_OBJECT -public: +namespace GpgFrontend { - explicit SignResultAnalyse(GpgFrontend::GpgContext *ctx, gpgme_error_t error, gpgme_sign_result_t result); + class SignResultAnalyse : public ResultAnalyse { + Q_OBJECT + public: + explicit SignResultAnalyse(GpgError error, GpgSignResult result); -private: + protected: -}; + void do_analyse(); + + + private: + GpgError error; + + GpgSignResult result; + + }; + +} #endif //GPGFRONTEND_SIGNRESULTANALYSE_H |