TSI_Config/macconfig.h

30 lines
436 B
C
Raw Permalink Normal View History

2025-04-27 10:05:00 +08:00
#ifndef MACCONFIG_H
#define MACCONFIG_H
#include <QWidget>
#include "MyTcpClient.h"
namespace Ui {
class MacConfig;
}
class MacConfig : public QWidget
{
Q_OBJECT
public:
explicit MacConfig(QWidget *parent = nullptr);
~MacConfig();
private slots:
void on_pushButton_confirm_clicked();
void on_pushButton_cancel_clicked();
private:
Ui::MacConfig *ui;
MyTcpClient* m_tcpClient;
};
#endif // MACCONFIG_H