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

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 TESTAPPLICATION_H
0010 #define TESTAPPLICATION_H
0011 
0012 #include <QMainWindow>
0013 
0014 class DynamicTreeModel;
0015 
0016 //@cond PRIVATE
0017 
0018 /**
0019  * @internal
0020  * Test Application for proxy models.
0021  */
0022 class MainWindow : public QMainWindow
0023 {
0024     Q_OBJECT
0025 public:
0026     MainWindow();
0027     ~MainWindow() override;
0028 
0029 private:
0030     DynamicTreeModel *m_rootModel;
0031     //   ContactsWidget* cw;
0032 };
0033 
0034 //@endcond
0035 
0036 #endif