Added support to C++ symbols rewriting.

This should simplify full C++ template instantiations.

Reviewed-by: Christian Kamm
This commit is contained in:
Roberto Raggi
2011-03-28 13:21:37 +02:00
parent 670d241288
commit 9608af7ad2
13 changed files with 930 additions and 3 deletions

View File

@@ -33,7 +33,8 @@ HEADERS += \
$$PWD/Type.h \
$$PWD/TypeVisitor.h \
$$PWD/ObjectiveCTypeQualifiers.h \
$$PWD/QtContextKeywords.h
$$PWD/QtContextKeywords.h \
$$PWD/Templates.h
SOURCES += \
$$PWD/AST.cpp \
@@ -68,4 +69,5 @@ SOURCES += \
$$PWD/TranslationUnit.cpp \
$$PWD/Type.cpp \
$$PWD/TypeVisitor.cpp \
$$PWD/QtContextKeywords.cpp
$$PWD/QtContextKeywords.cpp \
$$PWD/Templates.cpp