summaryrefslogtreecommitdiffstats
path: root/src/memberdef.h
diff options
context:
space:
mode:
authorDimitri van Heesch <dimitri@stack.nl>2006-05-07 18:20:12 (GMT)
committerDimitri van Heesch <dimitri@stack.nl>2006-05-07 18:20:12 (GMT)
commit0674d909555d4b1fe1e000425195ef33b00fe1a5 (patch)
tree2d15670fa3b1c4279e9d9439de2606f91f865d8b /src/memberdef.h
parent6f84cba4db755b69633ad66f6efbbaf94ca8df81 (diff)
downloadDoxygen-0674d909555d4b1fe1e000425195ef33b00fe1a5.zip
Doxygen-0674d909555d4b1fe1e000425195ef33b00fe1a5.tar.gz
Doxygen-0674d909555d4b1fe1e000425195ef33b00fe1a5.tar.bz2
Release-1.4.6-20060507
Diffstat (limited to 'src/memberdef.h')
-rw-r--r--src/memberdef.h8
1 files changed, 7 insertions, 1 deletions
diff --git a/src/memberdef.h b/src/memberdef.h
index 9f69892..dcfa401 100644
--- a/src/memberdef.h
+++ b/src/memberdef.h
@@ -2,7 +2,7 @@
*
*
*
- * Copyright (C) 1997-2005 by Dimitri van Heesch.
+ * Copyright (C) 1997-2006 by Dimitri van Heesch.
*
* Permission to use, copy, modify, and distribute this software and its
* documentation under the terms of the GNU General Public License is hereby
@@ -112,6 +112,7 @@ class MemberDef : public Definition
Protection protection() const { return prot; }
Specifier virtualness() const;
MemberType memberType() const { return mtype; }
+ QCString memberTypeName() const;
// getter methods
bool isSignal() const { return mtype==Signal; }
@@ -265,6 +266,10 @@ class MemberDef : public Definition
bool hasCallGraph() const { return m_hasCallGraph; }
void enableCallGraph(bool e);
+ // callergraph related members
+ bool hasCallerGraph() const { return m_hasCallerGraph; }
+ void enableCallerGraph(bool e);
+
bool visibleMemberGroup(bool hideNoHeader);
MemberDef *templateMaster() const { return m_templateMaster; }
@@ -352,6 +357,7 @@ class MemberDef : public Definition
bool annUsed;
bool annShown;
bool m_hasCallGraph;
+ bool m_hasCallerGraph;
int maxInitLines; // when the initializer will be displayed
int userInitLines; // result of explicit \hideinitializer or \showinitializer
MemberList *section; // declation list containing this member