summaryrefslogtreecommitdiffstats
path: root/src/entry.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/entry.h
parentb7473cd86e57053b866a719f160cd4d01e92f092 (diff)
downloadDoxygen-89f2e4c8f026df987fab492c050e43011ef96871.zip
Doxygen-89f2e4c8f026df987fab492c050e43011ef96871.tar.gz
Doxygen-89f2e4c8f026df987fab492c050e43011ef96871.tar.bz2
Release-1.3.9
Diffstat (limited to 'src/entry.h')
-rw-r--r--src/entry.h16
1 files changed, 9 insertions, 7 deletions
diff --git a/src/entry.h b/src/entry.h
index 1c7a0ee..16aef94 100644
--- a/src/entry.h
+++ b/src/entry.h
@@ -235,13 +235,15 @@ class Entry
};
enum MemberSpecifier
{
- Inline = 0x01,
- Explicit = 0x02,
- Mutable = 0x04,
- Settable = 0x08,
- Gettable = 0x10,
- Readable = 0x20,
- Writable = 0x40
+ Inline = 0x0001,
+ Explicit = 0x0002,
+ Mutable = 0x0004,
+ Settable = 0x0008,
+ Gettable = 0x0010,
+ Readable = 0x0020,
+ Writable = 0x0040,
+ Final = 0x0080,
+ Abstract = 0x0100,
};
Entry();