summaryrefslogtreecommitdiffstats
path: root/src/widgets/doc/snippets/reading-selections/window.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/widgets/doc/snippets/reading-selections/window.h')
-rw-r--r--src/widgets/doc/snippets/reading-selections/window.h30
1 files changed, 0 insertions, 30 deletions
diff --git a/src/widgets/doc/snippets/reading-selections/window.h b/src/widgets/doc/snippets/reading-selections/window.h
deleted file mode 100644
index a4cdb0cc08f..00000000000
--- a/src/widgets/doc/snippets/reading-selections/window.h
+++ /dev/null
@@ -1,30 +0,0 @@
-// Copyright (C) 2016 The Qt Company Ltd.
-// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause
-
-#ifndef WINDOW_H
-#define WINDOW_H
-
-#include <QItemSelection>
-#include <QMainWindow>
-#include <QAbstractItemModel>
-#include <QWidget>
-#include <QTableView>
-
-class MainWindow : public QMainWindow
-{
- Q_OBJECT
-public:
- MainWindow(QWidget *parent = nullptr);
-
-private slots:
- void fillSelection();
- void clearSelection();
- void selectAll();
-
-private:
- QAbstractItemModel *model;
- QItemSelectionModel *selectionModel;
- QTableView *table;
-};
-
-#endif