summaryrefslogtreecommitdiff
path: root/src/shared/cplusplus/Parser.h
diff options
context:
space:
mode:
authorErik Verbruggen <erik.verbruggen@nokia.com>2009-07-16 17:38:24 +0200
committerErik Verbruggen <erik.verbruggen@nokia.com>2009-07-16 17:38:24 +0200
commita3d129527fbce3a4b52b68eddaf65de0b54cca0c (patch)
tree228a3831573edbb65e8ca0f68cd764fd011ebf65 /src/shared/cplusplus/Parser.h
parent01ee7a95c9e19cbeee083363ba57e90c1ac4b20d (diff)
downloadqt-creator-a3d129527fbce3a4b52b68eddaf65de0b54cca0c.tar.gz
Added ObjC method prototypes 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 d292c5b935..d297498344 100644
--- a/src/shared/cplusplus/Parser.h
+++ b/src/shared/cplusplus/Parser.h
@@ -238,11 +238,11 @@ public:
bool parseObjCPropertyDeclaration(DeclarationAST *&node,
SpecifierAST *attributes = 0);
bool parseObjCImplementation(DeclarationAST *&node);
- bool parseObjCMethodPrototype();
+ bool parseObjCMethodPrototype(DeclarationAST *&node);
bool parseObjCPropertyAttribute(ObjcPropertyAttributeAST *&node);
bool parseObjCTypeName(ObjCTypeNameAST *&node);
bool parseObjCSelector(unsigned &selector_token);
- bool parseObjCKeywordDeclaration();
+ bool parseObjCKeywordDeclaration(ObjCMessageArgumentDeclarationAST *&node);
bool parseObjCTypeQualifiers(unsigned &type_qualifier);
bool parseObjCEnd(DeclarationAST *&node);