diff options
Diffstat (limited to 'include/gpg/result_analyse/EncryptResultAnalyse.h')
-rw-r--r-- | include/gpg/result_analyse/EncryptResultAnalyse.h | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/include/gpg/result_analyse/EncryptResultAnalyse.h b/include/gpg/result_analyse/EncryptResultAnalyse.h new file mode 100644 index 00000000..4717728b --- /dev/null +++ b/include/gpg/result_analyse/EncryptResultAnalyse.h @@ -0,0 +1,17 @@ +// +// Created by eric on 2021/6/9. +// + +#ifndef GPGFRONTEND_ENCRYPTRESULTANALYSE_H +#define GPGFRONTEND_ENCRYPTRESULTANALYSE_H + +#include "ResultAnalyse.h" + +class EncryptResultAnalyse : public ResultAnalyse{ +public: + explicit EncryptResultAnalyse(gpgme_error_t error, gpgme_encrypt_result_t result); + +}; + + +#endif //GPGFRONTEND_ENCRYPTRESULTANALYSE_H |