decryptionresult.h
00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021 #ifndef __GPGMEPP_DECRYPTIONRESULT_H__
00022 #define __GPGMEPP_DECRYPTIONRESULT_H__
00023
00024 #include <gpgmepp/gpgmefw.h>
00025 #include <gpgmepp/result.h>
00026
00027 namespace GpgME {
00028
00029 class Error;
00030
00031 class DecryptionResult : public Result {
00032 public:
00033 DecryptionResult( gpgme_ctx_t ctx=0, int error=0 );
00034 explicit DecryptionResult( const Error & err );
00035 DecryptionResult( const DecryptionResult & other );
00036 ~DecryptionResult();
00037
00038 const DecryptionResult & operator=( const DecryptionResult & other );
00039
00040 bool isNull() const;
00041
00042 const char * unsupportedAlgortihm() const;
00043
00044 private:
00045 class Private;
00046 Private * d;
00047 };
00048
00049 }
00050
00051 #endif
This file is part of the documentation for libkdenetwork Library Version 3.3.0.