diff options
Diffstat (limited to 'libtdenetwork/gpgmepp/eventloopinteractor.h')
-rw-r--r-- | libtdenetwork/gpgmepp/eventloopinteractor.h | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/libtdenetwork/gpgmepp/eventloopinteractor.h b/libtdenetwork/gpgmepp/eventloopinteractor.h index 6a696a40..9343b501 100644 --- a/libtdenetwork/gpgmepp/eventloopinteractor.h +++ b/libtdenetwork/gpgmepp/eventloopinteractor.h @@ -25,7 +25,6 @@ namespace GpgME { class Context; class Error; - class TrustItem; class Key; /*! \file eventloopinteractor.h @@ -38,7 +37,7 @@ namespace GpgME { IO Callback handling and one for gpgme events. The IO Callback interface consists of the three methods \c actOn(), \c registerWatcher() and \c unregisterWatcher(). The event - interface consists of the three methods \c nextTrustItemEvent(), + interface consists of the two methods \c nextKeyEvent() and \c operationDoneEvent(). \sect General Usage @@ -130,7 +129,6 @@ namespace GpgME { // Event Handler Interface // - virtual void nextTrustItemEvent( Context * context, const TrustItem & item ) = 0; virtual void nextKeyEvent( Context * context, const Key & key ) = 0; virtual void operationDoneEvent( Context * context, const Error & e ) = 0; |