diff options
author | dimitri <dimitri@afe2bf4a-e733-0410-8a33-86f594647bc7> | 2001-05-24 16:25:58 (GMT) |
---|---|---|
committer | dimitri <dimitri@afe2bf4a-e733-0410-8a33-86f594647bc7> | 2001-05-24 16:25:58 (GMT) |
commit | 9c04d0ffef418ec6c771a0afa4679a4e508ba710 (patch) | |
tree | 8572e4828627ab6b9a6d55d425469176c0c02e0b /src/memberdef.h | |
parent | 9ca6896b9e1e932f3ddf11bb74a9f80d5560044e (diff) | |
download | Doxygen-9c04d0ffef418ec6c771a0afa4679a4e508ba710.zip Doxygen-9c04d0ffef418ec6c771a0afa4679a4e508ba710.tar.gz Doxygen-9c04d0ffef418ec6c771a0afa4679a4e508ba710.tar.bz2 |
Release-1.2.7-20010524
Diffstat (limited to 'src/memberdef.h')
-rw-r--r-- | src/memberdef.h | 15 |
1 files changed, 13 insertions, 2 deletions
diff --git a/src/memberdef.h b/src/memberdef.h index 39869d4..bf8b446 100644 --- a/src/memberdef.h +++ b/src/memberdef.h @@ -84,11 +84,17 @@ class MemberDef : public Definition // scope query members ClassDef *getClassDef() const { return classDef; } - GroupDef *getGroupDef() const { return group; } FileDef *getFileDef() const { return fileDef; } NamespaceDef* getNamespaceDef() const { return nspace; } //Definition *getCompoundDef() const; + // querying the grouping definition + GroupDef *getGroupDef() const { return group; } + Grouping::GroupPri_t getGroupPri() const { return grouppri; } + const char *getGroupFileName() const { return groupFileName; } + int getGroupStartLine() const { return groupStartLine; } + bool getGroupHasDocs() const { return groupHasDocs; } + // direct kind info Protection protection() const { return prot; } Specifier virtualness() const { return virt; } @@ -137,7 +143,7 @@ class MemberDef : public Definition void setMaxInitLines(int lines) { userInitLines=lines; } void setMemberClass(ClassDef *cd) { classDef=cd; } void setSectionList(MemberList *sl) { section=sl; } - void setGroupDef(GroupDef *gd); + void setGroupDef(GroupDef *gd,Grouping::GroupPri_t pri,const QCString &fileName,int startLine,bool hasDocs); void setExplicitExternal(bool b) { explExt=b; } void makeRelated() { related=TRUE; } @@ -274,6 +280,11 @@ class MemberDef : public Definition // as its type then this is computed by // getClassDefOfAnonymousType() and // cached here. + Grouping::GroupPri_t grouppri; // priority of this definition + QCString groupFileName; // file where this grouping was defined + int groupStartLine; // line " " " " " + bool groupHasDocs; // true if the entry that caused the grouping was documented + // disable copying of member defs |