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
348 B
21 lines
348 B
#ifndef IPCSERVER_H
|
|
#define IPCSERVER_H
|
|
|
|
#include <ntqserversocket.h>
|
|
|
|
class IpcServer : public TQServerSocket
|
|
{
|
|
TQ_OBJECT
|
|
|
|
public:
|
|
IpcServer( TQ_UINT16 port, TQObject *parent );
|
|
|
|
void newConnection( int socket );
|
|
|
|
signals:
|
|
void receivedText( const TQString& );
|
|
void receivedPixmap( const TQPixmap& );
|
|
};
|
|
|
|
#endif // IPCSERVER_H
|