summaryrefslogtreecommitdiffstats
path: root/src/core/nodes/nodes.pri
diff options
context:
space:
mode:
authorPaul Lemire <paul.lemire@kdab.com>2014-04-29 14:24:58 +0200
committerThe Qt Project <gerrit-noreply@qt-project.org>2014-04-30 16:13:43 +0200
commit015445f649c64bed15a8e224cfbeb5dc344e58a8 (patch)
treecdb469e66c3933984c4afc5e7d6b0e1156fb28f1 /src/core/nodes/nodes.pri
parent5d356080f6862956fde632e3caf8600747730e9a (diff)
Added QmlEntity
QmlEntity is a subclass of Entity. It contains a QmlListProperty of Components. It properly separates the C++ from Qml. Change-Id: I8004943e3a98fb3211309a38e022be71560f9951 Reviewed-by: Sean Harmer <sean.harmer@kdab.com>
Diffstat (limited to 'src/core/nodes/nodes.pri')
-rw-r--r--src/core/nodes/nodes.pri6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/core/nodes/nodes.pri b/src/core/nodes/nodes.pri
index 36a8ece78..3e0ec79ef 100644
--- a/src/core/nodes/nodes.pri
+++ b/src/core/nodes/nodes.pri
@@ -4,10 +4,12 @@ HEADERS += \
$$PWD/node.h \
$$PWD/nodevisitor.h \
$$PWD/component.h \
- $$PWD/entity.h
+ $$PWD/entity.h \
+ $$PWD/qmlentity.h
SOURCES += \
$$PWD/node.cpp \
$$PWD/nodevisitor.cpp \
$$PWD/component.cpp \
- $$PWD/entity.cpp
+ $$PWD/entity.cpp \
+ $$PWD/qmlentity.cpp