summaryrefslogtreecommitdiffstats
path: root/src/groupdef.h
diff options
context:
space:
mode:
authordimitri <dimitri@afe2bf4a-e733-0410-8a33-86f594647bc7>2012-06-10 09:28:22 (GMT)
committerdimitri <dimitri@afe2bf4a-e733-0410-8a33-86f594647bc7>2012-06-10 09:28:22 (GMT)
commitf397aa6aa3e425c97c7bff085ea1aff7b479d7e8 (patch)
tree6709ddc7b1764dc3b20bbac7eb36c05edcc91e03 /src/groupdef.h
parentca357c82ca852382fd058698eab646409a015fc1 (diff)
downloadDoxygen-f397aa6aa3e425c97c7bff085ea1aff7b479d7e8.zip
Doxygen-f397aa6aa3e425c97c7bff085ea1aff7b479d7e8.tar.gz
Doxygen-f397aa6aa3e425c97c7bff085ea1aff7b479d7e8.tar.bz2
Release-1.8.1.1
Diffstat (limited to 'src/groupdef.h')
-rw-r--r--src/groupdef.h6
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: