summaryrefslogtreecommitdiff
path: root/src/shared/cplusplus/Parser.h
diff options
context:
space:
mode:
authorErik Verbruggen <erik.verbruggen@nokia.com>2009-07-16 15:50:42 +0200
committerErik Verbruggen <erik.verbruggen@nokia.com>2009-07-16 15:50:42 +0200
commit7fbec4f28ed0093e87b2dfd1fc57a9ff224f0b3f (patch)
tree39eb10745c0cf4f97b267c785be32e1f688e4a9c /src/shared/cplusplus/Parser.h
parentfa03d4698417fa7b6d1dd2929756a1e9e394d0af (diff)
downloadqt-creator-7fbec4f28ed0093e87b2dfd1fc57a9ff224f0b3f.tar.gz
Added ObjC properties to the AST.
Diffstat (limited to 'src/shared/cplusplus/Parser.h')
-rw-r--r--src/shared/cplusplus/Parser.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/shared/cplusplus/Parser.h b/src/shared/cplusplus/Parser.h
index 31f2383cf4..d292c5b935 100644
--- a/src/shared/cplusplus/Parser.h
+++ b/src/shared/cplusplus/Parser.h
@@ -233,13 +233,13 @@ public:
bool parseObjCProtocolRefs(ObjCProtocolRefsAST *&node);
bool parseObjClassInstanceVariables(ObjCInstanceVariablesDeclarationAST *&node);
- bool parseObjCInterfaceMemberDeclaration();
+ bool parseObjCInterfaceMemberDeclaration(DeclarationAST *&node);
bool parseObjCInstanceVariableDeclaration(DeclarationAST *&node);
bool parseObjCPropertyDeclaration(DeclarationAST *&node,
SpecifierAST *attributes = 0);
bool parseObjCImplementation(DeclarationAST *&node);
bool parseObjCMethodPrototype();
- bool parseObjCPropertyAttribute();
+ bool parseObjCPropertyAttribute(ObjcPropertyAttributeAST *&node);
bool parseObjCTypeName(ObjCTypeNameAST *&node);
bool parseObjCSelector(unsigned &selector_token);
bool parseObjCKeywordDeclaration();