diff options
author | Dimitri van Heesch <dimitri@stack.nl> | 2012-06-10 09:28:22 (GMT) |
---|---|---|
committer | Dimitri van Heesch <dimitri@stack.nl> | 2012-06-10 09:28:22 (GMT) |
commit | 0ce3aea886f4e95da56d164b3944fd54d3d68f89 (patch) | |
tree | 6709ddc7b1764dc3b20bbac7eb36c05edcc91e03 /src/groupdef.h | |
parent | 1983c30b71bf92b3fa6bfedbb98451c3b7f74498 (diff) | |
download | Doxygen-0ce3aea886f4e95da56d164b3944fd54d3d68f89.zip Doxygen-0ce3aea886f4e95da56d164b3944fd54d3d68f89.tar.gz Doxygen-0ce3aea886f4e95da56d164b3944fd54d3d68f89.tar.bz2 |
Release-1.8.1.1
Diffstat (limited to 'src/groupdef.h')
-rw-r--r-- | src/groupdef.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/groupdef.h b/src/groupdef.h index 5c83b81..6b41979 100644 --- a/src/groupdef.h +++ b/src/groupdef.h @@ -42,6 +42,7 @@ class DirList; class FTVHelp; class Entry; +/** A model of a group of symbols. */ class GroupDef : public Definition { public: @@ -50,7 +51,7 @@ class GroupDef : public Definition DefType definitionType() const { return TypeGroup; } QCString getOutputFileBase() const; QCString anchor() const { return QCString(); } - QCString displayName() const { return hasGroupTitle() ? title : Definition::name(); } + QCString displayName(bool=TRUE) const { return hasGroupTitle() ? title : Definition::name(); } const char *groupTitle() const { return title; } void setGroupTitle( const char *newtitle ); bool hasGroupTitle( ) const { return titleSet; } @@ -153,6 +154,7 @@ class GroupDef : public Definition }; +/** A sorted dictionary of GroupDef objects. */ class GroupSDict : public SDict<GroupDef> { public: @@ -164,6 +166,7 @@ class GroupSDict : public SDict<GroupDef> } }; +/** A list of GroupDef objects. */ class GroupList : public QList<GroupDef> { public: @@ -173,6 +176,7 @@ class GroupList : public QList<GroupDef> } }; +/** An iterator for GroupDef objects in a GroupList. */ class GroupListIterator : public QListIterator<GroupDef> { public: |