25 lines
382 B
C++
25 lines
382 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 slots:
|
|
void on_treeWidget_doubleClicked(const QModelIndex &);
|
|
|
|
private:
|
|
Ui::HistoryDialog *ui;
|
|
};
|
|
|
|
#endif // HISTORYDIALOG_H
|