Move tools classes into their own directory
authorAaron Kennedy <aaron.kennedy@nokia.com>
Tue, 12 Jul 2011 05:22:40 +0000 (15:22 +1000)
committerQt by Nokia <qt-info@nokia.com>
Tue, 30 Aug 2011 11:18:28 +0000 (13:18 +0200)
Change-Id: Ic8a3a35f36259659cb83b5e11641af47bd8b18a9
Reviewed-on: http://codereview.qt.nokia.com/3743
Reviewed-by: Roberto Raggi <roberto.raggi@nokia.com>
Reviewed-by: Qt Sanity Bot <qt_sanity_bot@ovi.com>

13 files changed:
src/declarative/qml/ftw/ftw.pri [new file with mode: 0644]
src/declarative/qml/ftw/qbitfield_p.h [moved from src/declarative/qml/qbitfield_p.h with 100% similarity]
src/declarative/qml/ftw/qdeclarativerefcount.cpp [moved from src/declarative/qml/qdeclarativerefcount.cpp with 100% similarity]
src/declarative/qml/ftw/qdeclarativerefcount_p.h [moved from src/declarative/qml/qdeclarativerefcount_p.h with 100% similarity]
src/declarative/qml/ftw/qhashedstring.cpp [moved from src/declarative/qml/v8/qhashedstring.cpp with 100% similarity]
src/declarative/qml/ftw/qhashedstring_p.h [moved from src/declarative/qml/v8/qhashedstring_p.h with 100% similarity]
src/declarative/qml/ftw/qintrusivelist.cpp [moved from src/declarative/qml/qintrusivelist.cpp with 100% similarity]
src/declarative/qml/ftw/qintrusivelist_p.h [moved from src/declarative/qml/qintrusivelist_p.h with 100% similarity]
src/declarative/qml/ftw/qmetaobjectbuilder.cpp [moved from src/declarative/qml/qmetaobjectbuilder.cpp with 100% similarity]
src/declarative/qml/ftw/qmetaobjectbuilder_p.h [moved from src/declarative/qml/qmetaobjectbuilder_p.h with 100% similarity]
src/declarative/qml/ftw/qpodvector_p.h [moved from src/declarative/qml/qpodvector_p.h with 100% similarity]
src/declarative/qml/qml.pri
src/declarative/qml/v8/v8.pri

diff --git a/src/declarative/qml/ftw/ftw.pri b/src/declarative/qml/ftw/ftw.pri
new file mode 100644 (file)
index 0000000..8709363
--- /dev/null
@@ -0,0 +1,16 @@
+INCLUDEPATH += $$PWD
+
+HEADERS +=  \
+    $$PWD/qbitfield_p.h \
+    $$PWD/qintrusivelist_p.h \
+    $$PWD/qmetaobjectbuilder_p.h \
+    $$PWD/qpodvector_p.h \
+    $$PWD/qhashedstring_p.h \
+    $$PWD/qdeclarativerefcount_p.h \
+
+SOURCES += \
+    $$PWD/qintrusivelist.cpp \
+    $$PWD/qmetaobjectbuilder.cpp \
+    $$PWD/qhashedstring.cpp \
+    $$PWD/qdeclarativerefcount.cpp \
+
index 18d59f7..b73c141 100644 (file)
@@ -17,7 +17,6 @@ SOURCES += \
     $$PWD/qdeclarativecompiler.cpp \
     $$PWD/qdeclarativecompileddata.cpp \
     $$PWD/qdeclarativeboundsignal.cpp \
-    $$PWD/qdeclarativerefcount.cpp \
     $$PWD/qdeclarativemetatype.cpp \
     $$PWD/qdeclarativestringconverters.cpp \
     $$PWD/qdeclarativeparserstatus.cpp \
@@ -31,7 +30,6 @@ SOURCES += \
     $$PWD/qdeclarativefastproperties.cpp \
     $$PWD/qdeclarativexmlhttprequest.cpp \
     $$PWD/qdeclarativesqldatabase.cpp \
-    $$PWD/qmetaobjectbuilder.cpp \
     $$PWD/qdeclarativewatcher.cpp \
     $$PWD/qdeclarativecleanup.cpp \
     $$PWD/qdeclarativepropertycache.cpp \
@@ -47,7 +45,6 @@ SOURCES += \
     $$PWD/qdeclarativeextensionplugin.cpp \
     $$PWD/qdeclarativeimport.cpp \
     $$PWD/qdeclarativelist.cpp \
-    $$PWD/qintrusivelist.cpp \
 
 HEADERS += \
     $$PWD/qdeclarativeparser_p.h \
@@ -72,7 +69,6 @@ HEADERS += \
     $$PWD/qdeclarativeengine_p.h \
     $$PWD/qdeclarativeexpression_p.h \
     $$PWD/qdeclarativeprivate.h \
-    $$PWD/qdeclarativerefcount_p.h \
     $$PWD/qdeclarativemetatype_p.h \
     $$PWD/qdeclarativeengine.h \
     $$PWD/qdeclarativecontext.h \
@@ -89,13 +85,10 @@ HEADERS += \
     $$PWD/qdeclarativescriptparser_p.h \
     $$PWD/qdeclarativeenginedebug_p.h \
     $$PWD/qdeclarativerewrite_p.h \
-    $$PWD/qpodvector_p.h \
-    $$PWD/qbitfield_p.h \
     $$PWD/qdeclarativevaluetype_p.h \
     $$PWD/qdeclarativefastproperties_p.h \
     $$PWD/qdeclarativexmlhttprequest_p.h \
     $$PWD/qdeclarativesqldatabase_p.h \
-    $$PWD/qmetaobjectbuilder_p.h \
     $$PWD/qdeclarativewatcher_p.h \
     $$PWD/qdeclarativecleanup_p.h \
     $$PWD/qdeclarativepropertycache_p.h \
@@ -113,11 +106,11 @@ HEADERS += \
     $$PWD/qdeclarativeimport_p.h \
     $$PWD/qdeclarativeextensionplugin.h \
     $$PWD/qdeclarativenullablevalue_p_p.h \
-    $$PWD/qintrusivelist_p.h \
     $$PWD/qdeclarativescriptstring_p.h
 
 QT += sql
 include(parser/parser.pri)
 include(rewriter/rewriter.pri)
+include(ftw/ftw.pri)
 include(v4/v4.pri)
 include(v8/v8.pri)
index 9349742..175efd6 100644 (file)
@@ -8,7 +8,6 @@ HEADERS += \
     $$PWD/qv8debug_p.h \
     $$PWD/qv8stringwrapper_p.h \
     $$PWD/qv8engine_p.h \
-    $$PWD/qhashedstring_p.h \
     $$PWD/qv8contextwrapper_p.h \
     $$PWD/qv8qobjectwrapper_p.h \
     $$PWD/qv8typewrapper_p.h \
@@ -25,7 +24,6 @@ HEADERS += \
 SOURCES += \
     $$PWD/qv8stringwrapper.cpp \
     $$PWD/qv8engine.cpp \
-    $$PWD/qhashedstring.cpp \
     $$PWD/qv8contextwrapper.cpp \
     $$PWD/qv8qobjectwrapper.cpp \
     $$PWD/qv8typewrapper.cpp \