diff options
author | Maksim Osipov <codemax@codemax.ru> | 2014-07-04 07:40:17 (GMT) |
---|---|---|
committer | Maksim Osipov <codemax@codemax.ru> | 2014-07-04 07:40:17 (GMT) |
commit | 54ac45bd9f535d13b2bf98e4d71b27b4590c3dc7 (patch) | |
tree | 09cf61c5323010b3ac2c5f38a3cc1ccd6b04e25b /src/memberdef.h | |
parent | f5ff1b8e55b4dad074d2a73f1d003ff2991cf894 (diff) | |
download | Doxygen-54ac45bd9f535d13b2bf98e4d71b27b4590c3dc7.zip Doxygen-54ac45bd9f535d13b2bf98e4d71b27b4590c3dc7.tar.gz Doxygen-54ac45bd9f535d13b2bf98e4d71b27b4590c3dc7.tar.bz2 |
Documentation generator: added support for C# property accessors visibility modifiers.
Diffstat (limited to 'src/memberdef.h')
-rw-r--r-- | src/memberdef.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/memberdef.h b/src/memberdef.h index 3259102..b3c671f 100644 --- a/src/memberdef.h +++ b/src/memberdef.h @@ -123,7 +123,11 @@ class MemberDef : public Definition bool isExplicit() const; bool isMutable() const; bool isGettable() const; + bool isPrivateGettable() const; + bool isProtectedGettable() const; bool isSettable() const; + bool isPrivateSettable() const; + bool isProtectedSettable() const; bool isReadable() const; bool isWritable() const; bool isAddable() const; |