1 /*
2     This file is part of the proxy model test suite.
3 
4     SPDX-FileCopyrightText: 2009 Stephen Kelly <steveire@gmail.com>
5 
6     SPDX-License-Identifier: LGPL-2.1-or-later
7 */
8 
9 #ifndef REPARENTINGPM_WIDGET_H
10 #define REPARENTINGPM_WIDGET_H
11 
12 #include <QWidget>
13 
14 #include "kreparentingproxymodel.h"
15 
16 class DynamicTreeModel;
17 
18 class ReparentingProxyModelWidget : public QWidget
19 {
20     Q_OBJECT
21 public:
22     ReparentingProxyModelWidget(QWidget *parent = nullptr);
23 
24 private:
25     DynamicTreeModel *m_rootModel;
26 };
27 
28 #endif
29