TSI_Config/singlerelay.h

25 lines
360 B
C
Raw Normal View History

2024-12-18 16:46:39 +08:00
#ifndef SINGLERELAY_H
#define SINGLERELAY_H
#include <QDialog>
namespace Ui {
class SingleRelay;
}
2025-03-27 10:16:01 +08:00
class SingleRelay : public QDialog {
2024-12-18 16:46:39 +08:00
Q_OBJECT
2025-03-27 10:16:01 +08:00
public:
2024-12-18 16:46:39 +08:00
explicit SingleRelay(QWidget *parent = nullptr);
~SingleRelay();
2025-03-27 10:16:01 +08:00
private slots:
void on_pushButton_cancel_clicked();
private:
2024-12-18 16:46:39 +08:00
Ui::SingleRelay *ui;
};
#endif // SINGLERELAY_H