PlotterHMI/historydialog.h
2024-02-06 14:19:53 +08:00

23 lines
307 B
C++

#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();
private:
Ui::HistoryDialog *ui;
};
#endif // HISTORYDIALOG_H