diff options
Diffstat (limited to 'src/shared/cplusplus/Symbol.cpp')
-rw-r--r-- | src/shared/cplusplus/Symbol.cpp | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/shared/cplusplus/Symbol.cpp b/src/shared/cplusplus/Symbol.cpp index 285a9185bb..7a8cbcdc10 100644 --- a/src/shared/cplusplus/Symbol.cpp +++ b/src/shared/cplusplus/Symbol.cpp @@ -373,6 +373,12 @@ bool Symbol::isClass() const bool Symbol::isForwardClassDeclaration() const { return asForwardClassDeclaration() != 0; } +bool Symbol::isQtPropertyDeclaration() const +{ return asQtPropertyDeclaration() != 0; } + +bool Symbol::isQtEnum() const +{ return asQtEnum() != 0; } + bool Symbol::isBlock() const { return asBlock() != 0; } |