ipcserver.h
Upload User: yayahi0755
Upload Date: 2022-05-14
Package Size: 876k
Code Size: 0k
Category:

Browser Client

Development Platform:

Unix_Linux

  1. #ifndef IPCSERVER_H
  2. #define IPCSERVER_H
  3. #include <qserversocket.h>
  4. class IpcServer : public QServerSocket
  5. {
  6.     Q_OBJECT
  7. public:
  8.     IpcServer( Q_UINT16 port, QObject *parent );
  9.     void newConnection( int socket );
  10. signals:
  11.     void receivedText( const QString& );
  12.     void receivedPixmap( const QPixmap& );
  13. };
  14. #endif // IPCSERVER_H