From 9efa5d940acd0d000cc76515d5dbafa519c3d33f Mon Sep 17 00:00:00 2001 From: Erik Verbruggen Date: Tue, 23 Mar 2010 12:04:44 +0100 Subject: Added __attribute__ visiting, and storing of the deprecated attr. --- src/shared/cplusplus/Symbol.h | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'src/shared/cplusplus/Symbol.h') diff --git a/src/shared/cplusplus/Symbol.h b/src/shared/cplusplus/Symbol.h index b1dab975e7..33bd7c92e8 100644 --- a/src/shared/cplusplus/Symbol.h +++ b/src/shared/cplusplus/Symbol.h @@ -291,6 +291,9 @@ public: bool isGenerated() const; + bool isDeprecated() const; + void setDeprecated(bool isDeprecated); + Symbol *enclosingSymbol() const; /// Returns the eclosing namespace scope. @@ -334,6 +337,7 @@ private: Symbol *_next; bool _isGenerated: 1; + bool _isDeprecated: 1; class IdentityForName; class HashCode; -- cgit v1.2.1