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.
qt3/examples/network/remotecontrol/ipcserver.h

21 lines
340 B

#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