diff options
author | dimitri <dimitri@afe2bf4a-e733-0410-8a33-86f594647bc7> | 2004-08-03 16:49:33 (GMT) |
---|---|---|
committer | dimitri <dimitri@afe2bf4a-e733-0410-8a33-86f594647bc7> | 2004-08-03 16:49:33 (GMT) |
commit | 6e8975abdb6b52477a5788bca969e13e467814dd (patch) | |
tree | 947221d2f202d586f7f386c57472cc941980963f /src/memberdef.h | |
parent | e305d80490e1fb2dc15eb9cf9ee13428936c8e16 (diff) | |
download | Doxygen-6e8975abdb6b52477a5788bca969e13e467814dd.zip Doxygen-6e8975abdb6b52477a5788bca969e13e467814dd.tar.gz Doxygen-6e8975abdb6b52477a5788bca969e13e467814dd.tar.bz2 |
Release-1.3.8-20040803
Diffstat (limited to 'src/memberdef.h')
-rw-r--r-- | src/memberdef.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/memberdef.h b/src/memberdef.h index 0208746..34c7164 100644 --- a/src/memberdef.h +++ b/src/memberdef.h @@ -93,6 +93,10 @@ class MemberDef : public Definition NamespaceDef* getNamespaceDef() const { return nspace; } //Definition *getCompoundDef() const; + // grabbing the property read/write accessor names + const char *getReadAccessor() const { return read; } + const char *getWriteAccessor() const { return write; } + // querying the grouping definition GroupDef *getGroupDef() const { return group; } Grouping::GroupPri_t getGroupPri() const { return grouppri; } @@ -161,6 +165,8 @@ class MemberDef : public Definition void setSectionList(Definition *d,MemberList *sl); void setGroupDef(GroupDef *gd,Grouping::GroupPri_t pri,const QCString &fileName,int startLine,bool hasDocs); void setExplicitExternal(bool b) { explExt=b; } + void setReadAccessor(const char *r) { read=r; } + void setWriteAccessor(const char *w) { write=w; } void makeRelated() { related=TRUE; } @@ -307,6 +313,8 @@ class MemberDef : public Definition QCString type; // return type QCString args; // function arguments/variable array specifiers QCString bitfields; // struct member bitfields + QCString read; // property read accessor + QCString write; // property write accessor QCString exception; // exceptions that can be thrown QCString init; // initializer int initLines; // number of lines in the initializer |