File indexing completed on 2024-04-21 03:56:13

0001 /*
0002     This file is part of the proxy model test suite.
0003 
0004     SPDX-FileCopyrightText: 2020 Marco Martin <mart@kde.org>
0005 
0006     SPDX-License-Identifier: LGPL-2.1-or-later
0007 */
0008 
0009 #ifndef DESCENDANTQMLTREE_H
0010 #define DESCENDANTQMLTREE_H
0011 
0012 #include <QWidget>
0013 
0014 class QTreeView;
0015 
0016 class DynamicTreeModel;
0017 
0018 class DescendantQmlTreeWidget : public QWidget
0019 {
0020 public:
0021     DescendantQmlTreeWidget(QWidget *parent = nullptr);
0022 
0023 private:
0024     DynamicTreeModel *m_rootModel;
0025 };
0026 
0027 #endif