engineinfo.h
00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021 #ifndef __GPGMEPP_ENGINEINFO_H__
00022 #define __GPGMEPP_ENGINEINFO_H__
00023
00024 #include <gpgmepp/gpgmefw.h>
00025 #include <gpgmepp/context.h>
00026
00027 namespace GpgME {
00028
00029 class EngineInfo {
00030 public:
00031 EngineInfo();
00032 EngineInfo( gpgme_engine_info_t engine );
00033 EngineInfo( const EngineInfo & other );
00034 ~EngineInfo();
00035
00036 const EngineInfo & operator=( const EngineInfo & other );
00037
00038 bool isNull() const;
00039
00040 Context::Protocol protocol() const;
00041 const char * fileName() const;
00042 const char * version() const;
00043 const char * requiredVersion() const;
00044 private:
00045 class Private;
00046 Private * d;
00047 };
00048
00049 }
00050
00051 #endif // __GPGMEPP_ENGINEINFO_H__
This file is part of the documentation for libkdenetwork Library Version 3.3.2.