diff options
author | Roberto Raggi <roberto.raggi@nokia.com> | 2010-08-11 14:35:58 +0200 |
---|---|---|
committer | Roberto Raggi <roberto.raggi@nokia.com> | 2010-08-11 15:25:20 +0200 |
commit | be1cde6ed5dcd6876eef078101699410667de2c1 (patch) | |
tree | 108c48873ff80998efe9c8c2b84953af3a8b5e4a /src/libs/cplusplus/Overview.h | |
parent | a14016bfe644cc901032e360806017dbbb101a0f (diff) | |
download | qt-creator-be1cde6ed5dcd6876eef078101699410667de2c1.tar.gz |
Pretty print templates.
Diffstat (limited to 'src/libs/cplusplus/Overview.h')
-rw-r--r-- | src/libs/cplusplus/Overview.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/libs/cplusplus/Overview.h b/src/libs/cplusplus/Overview.h index 785a453667..ec3825fe9a 100644 --- a/src/libs/cplusplus/Overview.h +++ b/src/libs/cplusplus/Overview.h @@ -56,6 +56,9 @@ public: bool showDefaultArguments() const; void setShowDefaultArguments(bool showDefaultArguments); + bool showTemplateParameters() const; + void setShowTemplateParameters(bool showTemplateParameters); + // argument index that you want to mark unsigned markedArgument() const; void setMarkedArgument(unsigned position); @@ -88,6 +91,7 @@ private: bool _showReturnTypes: 1; bool _showFunctionSignatures: 1; bool _showDefaultArguments: 1; + bool _showTemplateParameters: 1; }; } // end of namespace CPlusPlus |