You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
339 B
24 lines
339 B
#pragma once
|
|
|
|
#include <QMainWindow>
|
|
#include "ui_Setting.h"
|
|
#include <QTcpServer>
|
|
#include <QTcpSocket>
|
|
|
|
class Setting : public QMainWindow
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
Setting(QWidget *parent = nullptr);
|
|
~Setting();
|
|
QTcpServer* tcpserver;
|
|
QTcpSocket* tcpsocket;
|
|
|
|
private:
|
|
Ui::SettingClass ui;
|
|
private slots:
|
|
void on_finished_button();
|
|
|
|
};
|