diff options
author | dimitri <dimitri@afe2bf4a-e733-0410-8a33-86f594647bc7> | 2003-06-07 11:47:47 (GMT) |
---|---|---|
committer | dimitri <dimitri@afe2bf4a-e733-0410-8a33-86f594647bc7> | 2003-06-07 11:47:47 (GMT) |
commit | 0aa47e2a30513b04d1041d528f468d3434a81558 (patch) | |
tree | f17d17b67fdefdfdf992328f3f51dd90812c156e /src/memberdef.h | |
parent | 35c2baedaa68519999af733a87d8e6ff9a89358c (diff) | |
download | Doxygen-0aa47e2a30513b04d1041d528f468d3434a81558.zip Doxygen-0aa47e2a30513b04d1041d528f468d3434a81558.tar.gz Doxygen-0aa47e2a30513b04d1041d528f468d3434a81558.tar.bz2 |
Release-1.3.1-20030607
Diffstat (limited to 'src/memberdef.h')
-rw-r--r-- | src/memberdef.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/memberdef.h b/src/memberdef.h index 9801ca0..544e58e 100644 --- a/src/memberdef.h +++ b/src/memberdef.h @@ -225,6 +225,10 @@ class MemberDef : public Definition //void setIndentDepth( int i) { indDepth=i; } //int indentDepth() { return indDepth; } + // callgraph related members + bool hasCallGraph() const { return m_hasCallGraph; } + void enableCallGraph(bool e); + bool visibleMemberGroup(bool hideNoHeader); MemberDef *templateMaster() const { return m_templateMaster; } @@ -292,6 +296,7 @@ class MemberDef : public Definition bool annScope; // member is part of an annoymous scope bool annUsed; bool annShown; + bool m_hasCallGraph; //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 |