File indexing completed on 2024-05-19 15:09:20

0001 /*
0002     SPDX-FileCopyrightText: 2011 Marco Martin <mart@kde.org>
0003 
0004     SPDX-License-Identifier: LGPL-2.0-or-later
0005 */
0006 
0007 #ifndef KDECLARATIVE_P_H
0008 #define KDECLARATIVE_P_H
0009 
0010 #include "kdeclarative.h"
0011 #include "qmlobject.h"
0012 
0013 #include <KLocalizedContext>
0014 #include <QPointer>
0015 
0016 namespace KDeclarative
0017 {
0018 class KDeclarativePrivate
0019 {
0020 public:
0021     KDeclarativePrivate();
0022 
0023     QPointer<QQmlEngine> declarativeEngine;
0024     QString translationDomain;
0025     static QStringList s_runtimePlatform;
0026     QPointer<KLocalizedContext> contextObj;
0027     QPointer<QmlObject> qmlObj;
0028 };
0029 
0030 }
0031 
0032 #endif