23 lines
321 B
C++
23 lines
321 B
C++
#ifndef OVERSPEEDRELAY_H
|
|
#define OVERSPEEDRELAY_H
|
|
|
|
#include <QDialog>
|
|
|
|
namespace Ui {
|
|
class OverspeedRelay;
|
|
}
|
|
|
|
class OverspeedRelay : public QDialog
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit OverspeedRelay(QWidget *parent = nullptr);
|
|
~OverspeedRelay();
|
|
|
|
private:
|
|
Ui::OverspeedRelay *ui;
|
|
};
|
|
|
|
#endif // OVERSPEEDRELAY_H
|