PlotterHMI/plottersetdialog.h

27 lines
416 B
C
Raw Permalink Normal View History

2024-02-06 06:19:53 +00:00
#ifndef PLOTTERSETDIALOG_H
#define PLOTTERSETDIALOG_H
#include <QDialog>
namespace Ui {
class PlotterSetDialog;
}
class PlotterSetDialog : public QDialog
{
Q_OBJECT
public:
explicit PlotterSetDialog(QWidget *parent = 0);
~PlotterSetDialog();
void refreshLanguage();
private slots:
void on_pushButton_cancel_clicked();
2024-02-06 06:19:53 +00:00
private:
Ui::PlotterSetDialog *ui;
};
#endif // PLOTTERSETDIALOG_H