blob: 056a0588b3e4d6adb82f47b571a15273798b2548 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#ifndef OPIE_OCOP_CLIENT_H
#define OPIE_OCOP_CLIENT_H
#include <qcstring.h>
#include <qsocketnotifier.h>
struct OCOPClient {
int fd;
QSocketNotifier* notify;
};
#endif
|