blob: 5cc92053c701d77581eb38473640b53c3f547ede (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
#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:
ObexHandler *m_handler;
};
};
#endif
|