diff options
author | Dimitri van Heesch <dimitri@stack.nl> | 1999-12-15 19:36:24 (GMT) |
---|---|---|
committer | Dimitri van Heesch <dimitri@stack.nl> | 1999-12-15 19:36:24 (GMT) |
commit | a54eecdf4b3c961ff41bc5d3ea6f21713e08f903 (patch) | |
tree | c32965e6b0858adc9a1f108b7b4d909568efd52e /src/entry.h | |
parent | 1d4e23de96d6e6065089a909ccba321fe5fa7f28 (diff) | |
download | Doxygen-a54eecdf4b3c961ff41bc5d3ea6f21713e08f903.zip Doxygen-a54eecdf4b3c961ff41bc5d3ea6f21713e08f903.tar.gz Doxygen-a54eecdf4b3c961ff41bc5d3ea6f21713e08f903.tar.bz2 |
mods for doxygen-0.49-991003
Diffstat (limited to 'src/entry.h')
-rw-r--r-- | src/entry.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/entry.h b/src/entry.h index 18ee013..faf54bb 100644 --- a/src/entry.h +++ b/src/entry.h @@ -62,6 +62,7 @@ struct Argument class ArgumentList : public QList<Argument> { public: + ~ArgumentList() {} ArgumentList() : QList<Argument>(), constSpecifier(FALSE), volatileSpecifier(FALSE), @@ -106,6 +107,7 @@ class Entry NAMESPACEDOC_SEC = 0x02000000, INTERFACE_SEC = 0x04000000, INTERFACEDOC_SEC = 0x08000000, + MAINPAGEDOC_SEC = 0x10000000, COMPOUND_MASK = CLASS_SEC | STRUCT_SEC | UNION_SEC | INTERFACE_SEC, COMPOUNDDOC_MASK = CLASSDOC_SEC | STRUCTDOC_SEC | UNIONDOC_SEC | INTERFACEDOC_SEC, SCOPE_MASK = COMPOUND_MASK | NAMESPACE_SEC, @@ -126,6 +128,7 @@ class Entry bool slot; // a Qt slot ? bool stat; // static ? bool proto; // prototype ? + bool inLine; // inline ? Specifier virt; // virtualness of the entry Entry *parent; // parent node in the tree QCString type; // member type |