ipcserver.h
资源名称:Webserver.rar [点击查看]
上传用户:yayahi0755
上传日期:2022-05-14
资源大小:876k
文件大小:0k
源码类别:
浏览器
开发平台:
Unix_Linux
- #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