TSI_Config/singlerelay.h
2024-12-18 16:46:39 +08:00

23 lines
297 B
C++

#ifndef SINGLERELAY_H
#define SINGLERELAY_H
#include <QDialog>
namespace Ui {
class SingleRelay;
}
class SingleRelay : public QDialog
{
Q_OBJECT
public:
explicit SingleRelay(QWidget *parent = nullptr);
~SingleRelay();
private:
Ui::SingleRelay *ui;
};
#endif // SINGLERELAY_H