Last change
on this file was 2, checked in by dmik, 20 years ago |
Imported xplatform parts of the official release 3.3.1 from Trolltech
|
-
Property svn:keywords
set to
Id
|
File size:
360 bytes
|
Line | |
---|
1 | #ifndef IPCSERVER_H
|
---|
2 | #define IPCSERVER_H
|
---|
3 |
|
---|
4 | #include <qserversocket.h>
|
---|
5 |
|
---|
6 | class IpcServer : public QServerSocket
|
---|
7 | {
|
---|
8 | Q_OBJECT
|
---|
9 |
|
---|
10 | public:
|
---|
11 | IpcServer( Q_UINT16 port, QObject *parent );
|
---|
12 |
|
---|
13 | void newConnection( int socket );
|
---|
14 |
|
---|
15 | signals:
|
---|
16 | void receivedText( const QString& );
|
---|
17 | void receivedPixmap( const QPixmap& );
|
---|
18 | };
|
---|
19 |
|
---|
20 | #endif // IPCSERVER_H
|
---|
Note:
See
TracBrowser
for help on using the repository browser.