diff options
author | Roberto Raggi <roberto.raggi@nokia.com> | 2010-03-23 12:11:33 +0100 |
---|---|---|
committer | Roberto Raggi <roberto.raggi@nokia.com> | 2010-03-23 12:12:07 +0100 |
commit | 4b8d59719624271c1e70ba93294016fb593601f5 (patch) | |
tree | 6f8cf60ee992f620bffe561138a5f61e9f37fefd /src/shared/cplusplus/Parser.h | |
parent | 21c13328d3c5cf902734045394aa0a976aaf8db2 (diff) | |
download | qt-creator-4b8d59719624271c1e70ba93294016fb593601f5.tar.gz |
Recognize C++0x rvalue references.
Diffstat (limited to 'src/shared/cplusplus/Parser.h')
-rw-r--r-- | src/shared/cplusplus/Parser.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/shared/cplusplus/Parser.h b/src/shared/cplusplus/Parser.h index 18bc98f82b..34074bb7d1 100644 --- a/src/shared/cplusplus/Parser.h +++ b/src/shared/cplusplus/Parser.h @@ -67,6 +67,9 @@ public: bool qtMocRunEnabled() const; void setQtMocRunEnabled(bool onoff); + bool cxx0xEnabled() const; + void isCxxOxEnabled(bool onoff); + bool objCEnabled() const; void setObjCEnabled(bool onoff); @@ -312,6 +315,7 @@ private: unsigned _tokenIndex; bool _templateArguments: 1; bool _qtMocRunEnabled: 1; + bool _cxx0xEnabled: 1; bool _objCEnabled: 1; bool _inFunctionBody: 1; bool _inObjCImplementationContext: 1; |