summaryrefslogtreecommitdiff
path: root/core/obex/obeximpl.h
Unidiff
Diffstat (limited to 'core/obex/obeximpl.h') (more/less context) (ignore 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 @@
1#ifndef OPIE_OBEX_IMPL_QUERY_H
2#define OPIE_OBEX_IMPL_QUERY_H
3
4#include <obexinterface.h>
5
6namespace OpieObex {
7 class ObexHandler;
8 class ObexImpl : public ObexInterface {
9 public:
10 ObexImpl();
11 virtual ~ObexImpl();
12 QRESULT queryInterface( const QUuid&, QUnknownInterface** );
13 Q_REFCOUNT
14
15 private:
16 ulong ref;
17 ObexHandler *m_handler;
18
19 };
20};
21
22#endif