You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
340 B
21 lines
340 B
14 years ago
|
#ifndef IPCSERVER_H
|
||
|
#define IPCSERVER_H
|
||
|
|
||
|
#include <qserversocket.h>
|
||
|
|
||
|
class IpcServer : public QServerSocket
|
||
|
{
|
||
|
Q_OBJECT
|
||
|
|
||
|
public:
|
||
|
IpcServer( Q_UINT16 port, QObject *parent );
|
||
|
|
||
|
void newConnection( int socket );
|
||
|
|
||
|
signals:
|
||
|
void receivedText( const QString& );
|
||
|
void receivedPixmap( const QPixmap& );
|
||
|
};
|
||
|
|
||
|
#endif // IPCSERVER_H
|