diff options
author | DongHun Kwak <dh0128.kwak@samsung.com> | 2021-10-15 11:15:55 +0900 |
---|---|---|
committer | DongHun Kwak <dh0128.kwak@samsung.com> | 2021-10-15 11:15:55 +0900 |
commit | ce6f802772f02771c3bf86ccf78d0fc1731947c5 (patch) | |
tree | 25e321e11699eb23f2aec74513c2639d99e590c3 /src/definition.h | |
parent | 4aa4e498d10e343b3b2a49e06195f62a49120002 (diff) | |
download | doxygen-ce6f802772f02771c3bf86ccf78d0fc1731947c5.tar.gz doxygen-ce6f802772f02771c3bf86ccf78d0fc1731947c5.tar.bz2 doxygen-ce6f802772f02771c3bf86ccf78d0fc1731947c5.zip |
Imported Upstream version 1.9.1upstream/1.9.1
Diffstat (limited to 'src/definition.h')
-rw-r--r-- | src/definition.h | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/definition.h b/src/definition.h index 204e6f6..444b188 100644 --- a/src/definition.h +++ b/src/definition.h @@ -34,7 +34,6 @@ class FileDef; class OutputList; class SectionRefs; -class MemberSDict; class MemberDef; class GroupDef; class GroupList; @@ -261,7 +260,7 @@ class Definition /** Returns the programming language this definition was written in. */ virtual SrcLangExt getLanguage() const = 0; - virtual GroupList *partOfGroups() const = 0; + virtual const GroupList &partOfGroups() const = 0; virtual bool isLinkableViaGroup() const = 0; virtual const RefItemVector &xrefListItems() const = 0; @@ -361,7 +360,7 @@ class DefinitionMutable // --- actions ---- //----------------------------------------------------------------------------------- - virtual void makePartOfGroup(GroupDef *gd) = 0; + virtual void makePartOfGroup(const GroupDef *gd) = 0; /*! Add the list of anchors that mark the sections that are found in the * documentation. |