diff options
Diffstat (limited to 'context.h')
-rw-r--r-- | context.h | 6 |
1 files changed, 5 insertions, 1 deletions
@@ -51,8 +51,9 @@ typedef QLinkedList< GpgKey > GpgKeyList; namespace GpgME { -class Context +class Context : public QObject { + Q_OBJECT public: Context(); // Consttructor @@ -67,6 +68,9 @@ public: bool decrypt(const QByteArray &inBuffer, QByteArray *outBuffer); void clearCache(); +signals: + void keyDBChanged(); + private: gpgme_ctx_t m_ctx; gpgme_data_t in, out; |