diff options
Diffstat (limited to 'src/classdef.h')
-rw-r--r-- | src/classdef.h | 33 |
1 files changed, 17 insertions, 16 deletions
diff --git a/src/classdef.h b/src/classdef.h index 329e47b..6ffa451 100644 --- a/src/classdef.h +++ b/src/classdef.h @@ -126,25 +126,11 @@ class ClassDef : public Definition void addMembersToMemberGroup(); void distributeMemberGroupDocumentation(); - void generateXML(QTextStream &t); - void generateXMLSection(QTextStream &t,MemberList *ml,const char *type); + //void generateXML(QTextStream &t); + //void generateXMLSection(QTextStream &t,MemberList *ml,const char *type); PackageDef *packageDef() const; - protected: - void addUsedInterfaceClasses(MemberDef *md,const char *typeStr); - void addMemberListToGroup(MemberList *); - - private: - QCString fileName; // HTML containing the class docs - IncludeInfo *incInfo; // header file to refer to - QCString incName; // alternative include file name - QCString memListFileName; - QCString scopelessName; // name without any scopes - BaseClassList *inherits; - BaseClassList *inheritedBy; - NamespaceDef *nspace; // the namespace this class is in - /* member lists by protection */ MemberList pubMembers; MemberList proMembers; @@ -180,6 +166,21 @@ class ClassDef : public Definition MemberList variableMembers; MemberList propertyMembers; + protected: + void addUsedInterfaceClasses(MemberDef *md,const char *typeStr); + void addMemberListToGroup(MemberList *); + + private: + QCString fileName; // HTML containing the class docs + IncludeInfo *incInfo; // header file to refer to + QCString incName; // alternative include file name + QCString memListFileName; + QCString scopelessName; // name without any scopes + BaseClassList *inherits; + BaseClassList *inheritedBy; + NamespaceDef *nspace; // the namespace this class is in + + /* user defined member groups */ MemberGroupList *memberGroupList; MemberGroupDict *memberGroupDict; |