Warning, file /frameworks/plasma-framework/autotests/dialogqmltest.h was not indexed or was modified since last indexation (in which case cross-reference links may be missing, inaccurate or erroneous).

0001 /*
0002     SPDX-FileCopyrightText: 2014 Marco Martin <mart@kde.org>
0003 
0004     SPDX-License-Identifier: LGPL-2.0-or-later
0005 */
0006 #ifndef DIALOGQMLTEST_H
0007 #define DIALOGQMLTEST_H
0008 
0009 #include <QTest>
0010 
0011 #include "plasmaquick/dialog.h"
0012 
0013 class DialogQmlTest : public QObject
0014 {
0015     Q_OBJECT
0016 
0017 private Q_SLOTS:
0018     void loadAndShow();
0019 
0020 private:
0021     bool m_dialogShown;
0022 };
0023 
0024 #endif