summaryrefslogtreecommitdiffstats
path: root/libtdenetwork/gpgmepp/eventloopinteractor.h
diff options
context:
space:
mode:
Diffstat (limited to 'libtdenetwork/gpgmepp/eventloopinteractor.h')
-rw-r--r--libtdenetwork/gpgmepp/eventloopinteractor.h10
1 files changed, 3 insertions, 7 deletions
diff --git a/libtdenetwork/gpgmepp/eventloopinteractor.h b/libtdenetwork/gpgmepp/eventloopinteractor.h
index c3688833..9343b501 100644
--- a/libtdenetwork/gpgmepp/eventloopinteractor.h
+++ b/libtdenetwork/gpgmepp/eventloopinteractor.h
@@ -16,18 +16,15 @@
You should have received a copy of the GNU General Public License
along with GPGME; if not, write to the Free Software Foundation,
Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */
-
-// -*- c++ -*-
#ifndef __GPGMEPP_EVENTLOOPINTERACTOR_H__
#define __GPGMEPP_EVENTLOOPINTERACTOR_H__
-#include <tdepimmacros.h>
+#include <tdemacros.h>
namespace GpgME {
class Context;
class Error;
- class TrustItem;
class Key;
/*! \file eventloopinteractor.h
@@ -40,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
@@ -104,7 +101,7 @@ namespace GpgME {
*/
- class KDE_EXPORT EventLoopInteractor {
+ class TDE_EXPORT EventLoopInteractor {
protected:
EventLoopInteractor();
public:
@@ -132,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;