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