diff options
author | dimitri <dimitri@afe2bf4a-e733-0410-8a33-86f594647bc7> | 2002-02-10 18:17:19 (GMT) |
---|---|---|
committer | dimitri <dimitri@afe2bf4a-e733-0410-8a33-86f594647bc7> | 2002-02-10 18:17:19 (GMT) |
commit | d1e917df5d2bb4125a22eba3c984640c099a7096 (patch) | |
tree | d1468ce96ea2cb67fa7825027a3f93a67bf4d9a6 /src/definition.h | |
parent | 88c84f0affadf69d1813d1a971692a5097f8870a (diff) | |
download | Doxygen-d1e917df5d2bb4125a22eba3c984640c099a7096.zip Doxygen-d1e917df5d2bb4125a22eba3c984640c099a7096.tar.gz Doxygen-d1e917df5d2bb4125a22eba3c984640c099a7096.tar.bz2 |
Release-1.2.13-20020210
Diffstat (limited to 'src/definition.h')
-rw-r--r-- | src/definition.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/definition.h b/src/definition.h index 2efbc92..3ea3f56 100644 --- a/src/definition.h +++ b/src/definition.h @@ -28,6 +28,8 @@ class SectionDict; //class MemberDict; class MemberSDict; class MemberDef; +class GroupDef; +class GroupList; /*! The common base class of all entity definitions found in the sources. */ class Definition @@ -124,6 +126,9 @@ class Definition MemberSDict *getReferencesMembers() const { return m_sourceRefsDict; } MemberSDict *getReferencedByMembers() const { return m_sourceRefByDict; } + void makePartOfGroup(GroupDef *gd); + GroupList *partOfGroups() const { return m_partOfGroups; } + protected: int m_startBodyLine; // line number of the start of the definition int m_endBodyLine; // line number of the end of the definition @@ -139,6 +144,9 @@ class Definition QCString m_name; // name of the definition QCString m_localName; // local (unqualified) name of the definition // in the future m_name should become m_localName + /*! List of groups this definition is part of */ + GroupList *m_partOfGroups; + private: void writeSourceRefList(OutputList &ol,const char *scopeName, |