diff options
author | Roberto Raggi <roberto.raggi@nokia.com> | 2009-03-25 11:50:17 +0100 |
---|---|---|
committer | Roberto Raggi <roberto.raggi@nokia.com> | 2009-03-25 11:50:17 +0100 |
commit | 424dd77e18468a0516f1dbce10bcd3c25f979cf5 (patch) | |
tree | 14727ba29f39dfb03e34404264980088498179db /src/shared/cplusplus/AST.h | |
parent | 014efbdab0cce09f9c5c4b084cbb801f43d9ef7f (diff) | |
download | qt-creator-424dd77e18468a0516f1dbce10bcd3c25f979cf5.tar.gz |
Added support for Q_SIGNAL and Q_SLOT.
Diffstat (limited to 'src/shared/cplusplus/AST.h')
-rw-r--r-- | src/shared/cplusplus/AST.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/shared/cplusplus/AST.h b/src/shared/cplusplus/AST.h index 3f3f802506..44d5cd695a 100644 --- a/src/shared/cplusplus/AST.h +++ b/src/shared/cplusplus/AST.h @@ -396,6 +396,7 @@ protected: class CPLUSPLUS_EXPORT SimpleDeclarationAST: public DeclarationAST { public: + unsigned qt_invokable_token; SpecifierAST *decl_specifier_seq; DeclaratorListAST *declarators; unsigned semicolon_token; @@ -1071,6 +1072,7 @@ protected: class CPLUSPLUS_EXPORT FunctionDefinitionAST: public DeclarationAST { public: + unsigned qt_invokable_token; SpecifierAST *decl_specifier_seq; DeclaratorAST *declarator; CtorInitializerAST *ctor_initializer; |