summaryrefslogtreecommitdiffstats
path: root/src/widgets/doc/snippets/updating-selections/window.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/widgets/doc/snippets/updating-selections/window.h')
-rw-r--r--src/widgets/doc/snippets/updating-selections/window.h30
1 files changed, 0 insertions, 30 deletions
diff --git a/src/widgets/doc/snippets/updating-selections/window.h b/src/widgets/doc/snippets/updating-selections/window.h
deleted file mode 100644
index 37764537214..00000000000
--- a/src/widgets/doc/snippets/updating-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 <QModelIndex>
-#include <QWidget>
-#include <QTableView>
-
-class MainWindow : public QMainWindow
-{
- Q_OBJECT
-public:
- MainWindow(QWidget *parent = nullptr);
-
-public slots:
- void updateSelection(const QItemSelection &selected,
- const QItemSelection &deselected);
- void changeCurrent(const QModelIndex &current, const QModelIndex &previous);
-
-private:
- QAbstractItemModel *model;
- QItemSelectionModel *selectionModel;
- QTableView *table;
-};
-
-#endif