Log Viewer
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

29 lines
459 B

6 months ago
#ifndef MAINWINDOW_H
#define MAINWINDOW_H
#include <QMainWindow>
6 months ago
#include <QAbstractTableModel>
6 months ago
QT_BEGIN_NAMESPACE
6 months ago
namespace Ui { class MainWindow;
}
6 months ago
QT_END_NAMESPACE
class MainWindow : public QMainWindow
{
Q_OBJECT
public:
6 months ago
MainWindow(QWidget* parent = nullptr);
6 months ago
~MainWindow();
6 months ago
void setTable(QAbstractTableModel* model);
6 months ago
private:
6 months ago
void prepareTableView();
void prepareTreeView();
6 months ago
Ui::MainWindow* ui;
6 months ago
};
6 months ago
#endif //MAINWINDOW_H