ipcserver.h
上传用户:yayahi0755
上传日期:2022-05-14
资源大小:876k
文件大小:0k
源码类别:

浏览器

开发平台:

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