GpgFrontend Project
A Free, Powerful, Easy-to-Use, Compact, Cross-Platform, and Installation-Free OpenPGP(pgp) Crypto Tool.
GpgSignResultAnalyse.h
1
29#ifndef GPGFRONTEND_GPGSIGNRESULTANALYSE_H
30#define GPGFRONTEND_GPGSIGNRESULTANALYSE_H
31
32#include "GpgResultAnalyse.h"
33
34namespace GpgFrontend {
35
40class GPGFRONTEND_CORE_EXPORT GpgSignResultAnalyse : public GpgResultAnalyse {
41 public:
48 explicit GpgSignResultAnalyse(GpgError error, GpgSignResult result);
49
50 protected:
55 void do_analyse();
56
57 private:
58 GpgError error_;
59
60 GpgSignResult result_;
61};
62
63} // namespace GpgFrontend
64
65#endif // GPGFRONTEND_GPGSIGNRESULTANALYSE_H
Definition: GpgResultAnalyse.h:37
Definition: GpgSignResultAnalyse.h:40
Definition: CoreCommonUtil.cpp:29