diff options
author | Erik Verbruggen <erik.verbruggen@nokia.com> | 2010-02-06 15:47:46 +0100 |
---|---|---|
committer | Erik Verbruggen <erik.verbruggen@nokia.com> | 2010-02-07 10:49:03 +0100 |
commit | 7b913f7fa2e1a372177fe6ddff05d90b8b6827b8 (patch) | |
tree | 92275b1eed5fd5d357472b4279b13ce80ae4bb03 /src/shared/cplusplus/ASTfwd.h | |
parent | 21488e8898b1aaf5d33b3a33b488e2e280219f06 (diff) | |
download | qt-creator-7b913f7fa2e1a372177fe6ddff05d90b8b6827b8.tar.gz |
Changed Q_PROPERTY parsing and AST storage.
Diffstat (limited to 'src/shared/cplusplus/ASTfwd.h')
-rw-r--r-- | src/shared/cplusplus/ASTfwd.h | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/src/shared/cplusplus/ASTfwd.h b/src/shared/cplusplus/ASTfwd.h index 9890143e41..77864ca457 100644 --- a/src/shared/cplusplus/ASTfwd.h +++ b/src/shared/cplusplus/ASTfwd.h @@ -169,6 +169,10 @@ class QtFlagsDeclarationAST; class QtMemberDeclarationAST; class QtMethodAST; class QtPropertyDeclarationAST; +class QtPropertyDeclarationBoolItemAST; +class QtPropertyDeclarationFlaggingItemAST; +class QtPropertyDeclarationItemAST; +class QtPropertyDeclarationNamingItemAST; class QualifiedNameAST; class ReferenceAST; class ReturnStatementAST; @@ -213,8 +217,9 @@ typedef List<NestedNameSpecifierAST *> NestedNameSpecifierListAST; typedef List<CatchClauseAST *> CatchClauseListAST; typedef List<PtrOperatorAST *> PtrOperatorListAST; typedef List<SpecifierAST *> SpecifierListAST; - +typedef List<QtPropertyDeclarationItemAST *> QtPropertyDeclarationItemListAST; typedef List<NameAST *> NameListAST; + typedef List<ObjCMessageArgumentAST *> ObjCMessageArgumentListAST; typedef List<ObjCSelectorArgumentAST *> ObjCSelectorArgumentListAST; typedef List<ObjCPropertyAttributeAST *> ObjCPropertyAttributeListAST; |