summaryrefslogtreecommitdiff
path: root/core/obex/obeximpl.h
Side-by-side diff
Diffstat (limited to 'core/obex/obeximpl.h') (more/less context) (show whitespace changes)
-rw-r--r--core/obex/obeximpl.h22
1 files changed, 22 insertions, 0 deletions
diff --git a/core/obex/obeximpl.h b/core/obex/obeximpl.h
new file mode 100644
index 0000000..604eb8f
--- a/dev/null
+++ b/core/obex/obeximpl.h
@@ -0,0 +1,22 @@
+#ifndef OPIE_OBEX_IMPL_QUERY_H
+#define OPIE_OBEX_IMPL_QUERY_H
+
+#include <obexinterface.h>
+
+namespace OpieObex {
+ class ObexHandler;
+ class ObexImpl : public ObexInterface {
+ public:
+ ObexImpl();
+ virtual ~ObexImpl();
+ QRESULT queryInterface( const QUuid&, QUnknownInterface** );
+ Q_REFCOUNT
+
+ private:
+ ulong ref;
+ ObexHandler *m_handler;
+
+ };
+};
+
+#endif