summaryrefslogtreecommitdiffstats
path: root/src/entry.h
diff options
context:
space:
mode:
authorMaksim Osipov <codemax@codemax.ru>2014-07-03 11:05:45 (GMT)
committerMaksim Osipov <codemax@codemax.ru>2014-07-03 11:05:45 (GMT)
commitf5ff1b8e55b4dad074d2a73f1d003ff2991cf894 (patch)
tree693619a10a6b9875b87adf6a1e53b9d6a95c9872 /src/entry.h
parent070c35549da108695074239be3ab4268f3722261 (diff)
downloadDoxygen-f5ff1b8e55b4dad074d2a73f1d003ff2991cf894.zip
Doxygen-f5ff1b8e55b4dad074d2a73f1d003ff2991cf894.tar.gz
Doxygen-f5ff1b8e55b4dad074d2a73f1d003ff2991cf894.tar.bz2
Language parser: added support for C# property accessors visibility modifiers.
Diffstat (limited to 'src/entry.h')
-rw-r--r--src/entry.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/entry.h b/src/entry.h
index a861906..3e5f3d7 100644
--- a/src/entry.h
+++ b/src/entry.h
@@ -135,6 +135,10 @@ class Entry
static const uint64 Singleton = (1ULL<<14); // UNO IDL
// member specifiers (add new items to the beginning)
+ static const uint64 PrivateGettable = (1ULL<<20); // C# private getter
+ static const uint64 ProtectedGettable = (1ULL<<21); // C# protected getter
+ static const uint64 PrivateSettable = (1ULL<<22); // C# private setter
+ static const uint64 ProtectedSettable = (1ULL<<23); // C# protected setter
static const uint64 Inline = (1ULL<<24);
static const uint64 Explicit = (1ULL<<25);
static const uint64 Mutable = (1ULL<<26);