TSI_Config/ethconfig.h

31 lines
437 B
C
Raw Normal View History

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