diff options
author | Petr Prikryl <prikryl@atlas.cz> | 2014-07-29 07:09:52 (GMT) |
---|---|---|
committer | Petr Prikryl <prikryl@atlas.cz> | 2014-07-29 07:09:52 (GMT) |
commit | e38b1f7685bfa4a301a96d09034dd940c2153aed (patch) | |
tree | 3571bd0400ecd959bddd686ab1e92019b0808889 /src/entry.h | |
parent | 1ccc93fd699b34b7a89acecf9e59a526a5972bb8 (diff) | |
parent | c9d816aaf20c24c624407ba1c2eb4e00eff0c02f (diff) | |
download | Doxygen-e38b1f7685bfa4a301a96d09034dd940c2153aed.zip Doxygen-e38b1f7685bfa4a301a96d09034dd940c2153aed.tar.gz Doxygen-e38b1f7685bfa4a301a96d09034dd940c2153aed.tar.bz2 |
Merge branch 'master' of https://github.com/doxygen/doxygen.git
Diffstat (limited to 'src/entry.h')
-rw-r--r-- | src/entry.h | 4 |
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); |