1 /*
2     SPDX-FileCopyrightText: 2011 Marco Martin <mart@kde.org>
3 
4     SPDX-License-Identifier: LGPL-2.0-or-later
5 */
6 
7 #ifndef KDECLARATIVE_P_H
8 #define KDECLARATIVE_P_H
9 
10 #include "kdeclarative.h"
11 #include "qmlobject.h"
12 
13 #include <KLocalizedContext>
14 #include <QPointer>
15 
16 namespace KDeclarative
17 {
18 class KDeclarativePrivate
19 {
20 public:
21     KDeclarativePrivate();
22 
23     QPointer<QQmlEngine> declarativeEngine;
24     QString translationDomain;
25     static QStringList s_runtimePlatform;
26     QPointer<KLocalizedContext> contextObj;
27     QPointer<QmlObject> qmlObj;
28 };
29 
30 }
31 
32 #endif
33