summaryrefslogtreecommitdiffstats
path: root/src/memberdef.h
diff options
context:
space:
mode:
authorDimitri van Heesch <dimitri@stack.nl>2004-10-05 18:06:58 (GMT)
committerDimitri van Heesch <dimitri@stack.nl>2004-10-05 18:06:58 (GMT)
commit89f2e4c8f026df987fab492c050e43011ef96871 (patch)
tree71b1f69fb092055eb6cb12c050b73c5ff04afd85 /src/memberdef.h
parentb7473cd86e57053b866a719f160cd4d01e92f092 (diff)
downloadDoxygen-89f2e4c8f026df987fab492c050e43011ef96871.zip
Doxygen-89f2e4c8f026df987fab492c050e43011ef96871.tar.gz
Doxygen-89f2e4c8f026df987fab492c050e43011ef96871.tar.bz2
Release-1.3.9
Diffstat (limited to 'src/memberdef.h')
-rw-r--r--src/memberdef.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/memberdef.h b/src/memberdef.h
index b7dbf46..5456e98 100644
--- a/src/memberdef.h
+++ b/src/memberdef.h
@@ -132,6 +132,8 @@ class MemberDef : public Definition
bool isSettable() const { return (memSpec&Entry::Settable)!=0; }
bool isReadable() const { return (memSpec&Entry::Readable)!=0; }
bool isWritable() const { return (memSpec&Entry::Writable)!=0; }
+ bool isFinal() const { return (memSpec&Entry::Final)!=0; }
+ bool isAbstract() const { return (memSpec&Entry::Abstract)!=0; }
bool isImplementation() const { return m_implOnly; }
bool isExternal() const { return explExt; }
bool isTemplateSpecialization() const { return tspec; }