diff options
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 |