blob: b3434dd73c5f1f571cf6ae7b0291ba1ec491820f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
#ifndef IRSERVER_H
#define IRSERVER_H
#include <qobject.h>
class QCopChannel;
class QLibrary;
struct ObexInterface;
class IrServer : public QObject
{
Q_OBJECT
public:
IrServer( QObject *parent = 0, const char *name = 0 );
~IrServer();
private:
QLibrary *lib;
ObexInterface *iface;
};
#endif
|