summaryrefslogtreecommitdiffstats
path: root/src/memberdef.h
diff options
context:
space:
mode:
authorDimitri van Heesch <dimitri@stack.nl>2000-09-10 15:26:30 (GMT)
committerDimitri van Heesch <dimitri@stack.nl>2000-09-10 15:26:30 (GMT)
commitb91275de37e317332d5c461e4d66a8685e682f80 (patch)
tree19b06b53ec293b6d690ff3d82f256f67576dee1c /src/memberdef.h
parent6838640c89552dd1e4495a4a9101754c4d7d4011 (diff)
downloadDoxygen-b91275de37e317332d5c461e4d66a8685e682f80.zip
Doxygen-b91275de37e317332d5c461e4d66a8685e682f80.tar.gz
Doxygen-b91275de37e317332d5c461e4d66a8685e682f80.tar.bz2
Release-20000910
Diffstat (limited to 'src/memberdef.h')
-rw-r--r--src/memberdef.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/memberdef.h b/src/memberdef.h
index 288dc94..279d5b3 100644
--- a/src/memberdef.h
+++ b/src/memberdef.h
@@ -57,7 +57,8 @@ class MemberDef : public Definition
Prototype,
Signal,
Slot,
- Friend
+ Friend,
+ DCOP
};
enum
@@ -107,6 +108,7 @@ class MemberDef : public Definition
bool isFunction() const { return mtype==Function; }
bool isDefine() const { return mtype==Define; }
bool isFriend() const { return mtype==Friend; }
+ bool isDCOP() const { return mtype==DCOP; }
bool isRelated() const { return related; }
bool isStatic() const { return stat; }
bool isInline() const { return (memSpec&Entry::Inline)!=0; }