File indexing completed on 2024-04-14 03:54:00

0001 /*
0002     This file is part of the proxy model test suite.
0003 
0004     SPDX-FileCopyrightText: 2009 Stephen Kelly <steveire@gmail.com>
0005 
0006     SPDX-License-Identifier: LGPL-2.1-or-later
0007 */
0008 
0009 #ifndef REPARENTINGPM_WIDGET_H
0010 #define REPARENTINGPM_WIDGET_H
0011 
0012 #include <QWidget>
0013 
0014 #include "kreparentingproxymodel.h"
0015 
0016 class DynamicTreeModel;
0017 
0018 class ReparentingProxyModelWidget : public QWidget
0019 {
0020     Q_OBJECT
0021 public:
0022     ReparentingProxyModelWidget(QWidget *parent = nullptr);
0023 
0024 private:
0025     DynamicTreeModel *m_rootModel;
0026 };
0027 
0028 #endif