mirror of
https://gitee.com/drabel/LibQQt.git
synced 2025-01-04 10:18:44 +08:00
20 lines
331 B
C++
20 lines
331 B
C++
#ifndef CEDIANUDPSERVER_H
|
|
#define CEDIANUDPSERVER_H
|
|
|
|
#include <qqtsocketudpclient.h>
|
|
#include <qqtcore.h>
|
|
|
|
class CedianUdpServer : public QQtSocketUdpClient
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
explicit CedianUdpServer ( QObject* parent = nullptr );
|
|
virtual ~CedianUdpServer() {}
|
|
|
|
signals:
|
|
|
|
public slots:
|
|
};
|
|
|
|
#endif // CEDIANUDPSERVER_H
|