diff options
author | dimitri <dimitri@afe2bf4a-e733-0410-8a33-86f594647bc7> | 2002-11-28 20:38:57 (GMT) |
---|---|---|
committer | dimitri <dimitri@afe2bf4a-e733-0410-8a33-86f594647bc7> | 2002-11-28 20:38:57 (GMT) |
commit | f3e7209fed9703e8be668753d1083ba335121a6e (patch) | |
tree | 229ba1f0bd2e721f4cc81307b63d8c79051d1bc4 /src/memberdef.h | |
parent | e952dab58265a6f21867e51f72d7d81ffe39e082 (diff) | |
download | Doxygen-f3e7209fed9703e8be668753d1083ba335121a6e.zip Doxygen-f3e7209fed9703e8be668753d1083ba335121a6e.tar.gz Doxygen-f3e7209fed9703e8be668753d1083ba335121a6e.tar.bz2 |
Release-1.3-rc1-20021128
Diffstat (limited to 'src/memberdef.h')
-rw-r--r-- | src/memberdef.h | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/src/memberdef.h b/src/memberdef.h index 7a8aba3..360d382 100644 --- a/src/memberdef.h +++ b/src/memberdef.h @@ -21,6 +21,7 @@ #include "qtbc.h" #include <qlist.h> #include <qdict.h> +#include <qstack.h> #include "entry.h" #include "definition.h" @@ -221,8 +222,8 @@ class MemberDef : public Definition void setFromAnonymousMember(MemberDef *m) { annMemb=m; } bool fromAnonymousScope() const { return annScope; } bool anonymousDeclShown() const { return annUsed; } - void setIndentDepth( int i) { indDepth=i; } - int indentDepth() { return indDepth; } + //void setIndentDepth( int i) { indDepth=i; } + //int indentDepth() { return indDepth; } bool visibleMemberGroup(bool hideNoHeader); MemberDef *templateMaster() const { return m_templateMaster; } @@ -251,6 +252,7 @@ class MemberDef : public Definition void writeEnumDeclaration(OutputList &typeDecl, ClassDef *cd,NamespaceDef *nd,FileDef *fd,GroupDef *gd); + void findSectionsInDocumentation(); bool visited; @@ -290,7 +292,7 @@ class MemberDef : public Definition bool annScope; // member is part of an annoymous scope bool annUsed; bool annShown; - int indDepth; // indentation depth for this member if inside an annonymous scope + //int indDepth; // indentation depth for this member if inside an annonymous scope int maxInitLines; // when the initializer will be displayed int userInitLines; // result of explicit \hideinitializer or \showinitializer MemberList *section; // declation list containing this member @@ -323,6 +325,7 @@ class MemberDef : public Definition // disable copying of member defs MemberDef(const MemberDef &); MemberDef &operator=(const MemberDef &); + static int s_indentLevel; }; #endif |