PlotterHMI/historydialog.h

24 lines
335 B
C
Raw Normal View History

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