summaryrefslogtreecommitdiff
path: root/noncore/securityplugins/notice/noticepluginimpl.h
Unidiff
Diffstat (limited to 'noncore/securityplugins/notice/noticepluginimpl.h') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/securityplugins/notice/noticepluginimpl.h5
1 files changed, 2 insertions, 3 deletions
diff --git a/noncore/securityplugins/notice/noticepluginimpl.h b/noncore/securityplugins/notice/noticepluginimpl.h
index b2a1140..1b1e22f 100644
--- a/noncore/securityplugins/notice/noticepluginimpl.h
+++ b/noncore/securityplugins/notice/noticepluginimpl.h
@@ -36,26 +36,25 @@
36 36
37#include "noticeplugin.h" 37#include "noticeplugin.h"
38 38
39/** 39/**
40 * \brief Standard multiauth plugin class 40 * \brief Standard multiauth plugin class
41 */ 41 */
42class NoticePluginImpl : public MultiauthPluginInterface{ 42class NoticePluginImpl : public Opie::Security::MultiauthPluginInterface{
43 43
44 public: 44 public:
45 NoticePluginImpl(); 45 NoticePluginImpl();
46 virtual ~NoticePluginImpl(); 46 virtual ~NoticePluginImpl();
47 47
48 QRESULT queryInterface( const QUuid &, QUnknownInterface** ); 48 QRESULT queryInterface( const QUuid &, QUnknownInterface** );
49 /// defines standard addRef() and release() functions 49 /// defines standard addRef() and release() functions
50 Q_REFCOUNT; 50 Q_REFCOUNT;
51 51
52 virtual MultiauthPluginObject *plugin(); 52 virtual Opie::Security::MultiauthPluginObject *plugin();
53 53
54 private: 54 private:
55 /// the plugin itself 55 /// the plugin itself
56 NoticePlugin *noticePlugin; 56 NoticePlugin *noticePlugin;
57 ulong ref;
58}; 57};
59 58
60#endif 59#endif
61 60