diff options
author | Dimitri van Heesch <dimitri@stack.nl> | 2000-09-10 15:26:30 (GMT) |
---|---|---|
committer | Dimitri van Heesch <dimitri@stack.nl> | 2000-09-10 15:26:30 (GMT) |
commit | b91275de37e317332d5c461e4d66a8685e682f80 (patch) | |
tree | 19b06b53ec293b6d690ff3d82f256f67576dee1c /src/memberdef.h | |
parent | 6838640c89552dd1e4495a4a9101754c4d7d4011 (diff) | |
download | Doxygen-b91275de37e317332d5c461e4d66a8685e682f80.zip Doxygen-b91275de37e317332d5c461e4d66a8685e682f80.tar.gz Doxygen-b91275de37e317332d5c461e4d66a8685e682f80.tar.bz2 |
Release-20000910
Diffstat (limited to 'src/memberdef.h')
-rw-r--r-- | src/memberdef.h | 4 |
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; } |