blob: 604eb8f436d2641be8e7745c702831ee64a48bea (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
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
|