diff options
author | dimitri <dimitri@afe2bf4a-e733-0410-8a33-86f594647bc7> | 2008-07-27 14:59:10 (GMT) |
---|---|---|
committer | dimitri <dimitri@afe2bf4a-e733-0410-8a33-86f594647bc7> | 2008-07-27 14:59:10 (GMT) |
commit | 016a22cd3abf688848cbe07315790fa4f14b0eef (patch) | |
tree | 201e94696e0c1cb55ffa8fd45c97dfa1ac586f0f /src/memberdef.h | |
parent | f7e90abb5cdcb69a618505177683e9ac74a2bdb8 (diff) | |
download | Doxygen-016a22cd3abf688848cbe07315790fa4f14b0eef.zip Doxygen-016a22cd3abf688848cbe07315790fa4f14b0eef.tar.gz Doxygen-016a22cd3abf688848cbe07315790fa4f14b0eef.tar.bz2 |
Release-1.5.6-20080727
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 6336269..8dbcf0e 100644 --- a/src/memberdef.h +++ b/src/memberdef.h @@ -69,7 +69,7 @@ class MemberDef : public Definition MemberDef(const char *defFileName,int defLine, const char *type,const char *name,const char *args, const char *excp,Protection prot,Specifier virt,bool stat, - bool related,MemberType t,const ArgumentList *tal, + Relationship related,MemberType t,const ArgumentList *tal, const ArgumentList *al); ~MemberDef(); DefType definitionType() const { return TypeMember; } @@ -133,6 +133,7 @@ class MemberDef : public Definition bool isProperty() const; bool isEvent() const; bool isRelated() const; + bool isForeign() const; bool isStatic() const; bool isInline() const; bool isExplicit() const; @@ -257,6 +258,7 @@ class MemberDef : public Definition void setTemplateSpecialization(bool b); void makeRelated(); + void makeForeign(); void setHasDocumentedParams(bool b); void setHasDocumentedReturnType(bool b); void setInheritsDocsFrom(MemberDef *md); |