Added __attribute__ visiting, and storing of the deprecated attr.

This commit is contained in:
Erik Verbruggen
2010-03-23 12:04:44 +01:00
parent f45ff92c28
commit 9efa5d940a
10 changed files with 73 additions and 25 deletions

View File

@@ -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;