2022-05-10 12:06:48 +02:00
|
|
|
// Copyright (C) 2016 The Qt Company Ltd.
|
|
|
|
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause
|
2011-04-27 12:05:43 +02:00
|
|
|
|
|
|
|
#ifndef MAINWINDOW_H
|
|
|
|
#define MAINWINDOW_H
|
|
|
|
|
2018-10-20 21:48:28 +02:00
|
|
|
#include <QMainWindow>
|
2011-04-27 12:05:43 +02:00
|
|
|
|
2018-10-20 21:48:28 +02:00
|
|
|
QT_BEGIN_NAMESPACE
|
2022-08-08 11:29:22 +02:00
|
|
|
class QTableView; // forward declaration
|
2011-04-27 12:05:43 +02:00
|
|
|
QT_END_NAMESPACE
|
|
|
|
|
|
|
|
|
|
|
|
class MainWindow : public QMainWindow
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
2022-08-08 11:29:22 +02:00
|
|
|
public:
|
|
|
|
explicit MainWindow(QWidget *parent = nullptr);
|
|
|
|
|
2011-04-27 12:05:43 +02:00
|
|
|
private:
|
|
|
|
QTableView *tableView;
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif // MAINWINDOW_H
|