diff options
author | Aaron Kennedy <aaron.kennedy@nokia.com> | 2010-02-24 07:03:42 (GMT) |
---|---|---|
committer | Aaron Kennedy <aaron.kennedy@nokia.com> | 2010-02-24 07:04:27 (GMT) |
commit | 7eb5fc91a30a360507a65c19b6a3b96f757c2c4e (patch) | |
tree | 390b0010e1f7be48aeb8cf143d6ec1aaa1a80b7d /src/declarative/qml/qdeclarativelist.h | |
parent | 40256d682e1a552c9566a744a66cc6fe008b578b (diff) | |
download | Qt-7eb5fc91a30a360507a65c19b6a3b96f757c2c4e.zip Qt-7eb5fc91a30a360507a65c19b6a3b96f757c2c4e.tar.gz Qt-7eb5fc91a30a360507a65c19b6a3b96f757c2c4e.tar.bz2 |
Simplify QML element registration headers
Diffstat (limited to 'src/declarative/qml/qdeclarativelist.h')
-rw-r--r-- | src/declarative/qml/qdeclarativelist.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/declarative/qml/qdeclarativelist.h b/src/declarative/qml/qdeclarativelist.h index fb877b4..8d59384 100644 --- a/src/declarative/qml/qdeclarativelist.h +++ b/src/declarative/qml/qdeclarativelist.h @@ -42,7 +42,9 @@ #ifndef QDECLARATIVELIST_H #define QDECLARATIVELIST_H -#include "qdeclarativeprivate.h" +#include <QtCore/qglobal.h> +#include <QtCore/qlist.h> +#include <QtCore/qvariant.h> QT_BEGIN_HEADER @@ -50,6 +52,8 @@ QT_BEGIN_NAMESPACE QT_MODULE(Declarative) +class QObject; +class QMetaObject; template<typename T> struct QDeclarativeListProperty { typedef void (*AppendFunction)(QDeclarativeListProperty<T> *, T*); |