23 lines
372 B
C++
23 lines
372 B
C++
#ifndef MYTCPSERVER_H
|
|
#define MYTCPSERVER_H
|
|
|
|
#include <QObject>
|
|
#include<QTcpServer>
|
|
|
|
class MyTcpServer : public QObject
|
|
{
|
|
Q_OBJECT
|
|
private:
|
|
QTcpServer * Server;
|
|
QString LocalIP="192.168.137.1";
|
|
qint16 LocalPort=1212;
|
|
public:
|
|
explicit MyTcpServer(QObject *parent = nullptr);
|
|
|
|
signals:
|
|
private slots:
|
|
void OnConnected();
|
|
};
|
|
|
|
#endif // MYTCPSERVER_H
|