diff options
| author | Avi Levkovich <avi@twine-s.com> | 2017-12-10 11:18:02 +0200 |
|---|---|---|
| committer | Avi Levkovich <avi@twine-s.com> | 2017-12-10 11:18:02 +0200 |
| commit | f8c0a7d42104cf01ef6c3b0d51503a91ee0d7047 (patch) | |
| tree | aa28e09c5d4c4a7da8e5fe5e00ffe355f6fc5a3f /Software/Visual_Studio/Tango.CodeGeneration/CodeObjectModifier.cs | |
| parent | 8eec69d8933841f4e45fd9e63010bff51ae64a27 (diff) | |
| parent | 9a34f6f6456702440ecd50f902e59daa2ea77595 (diff) | |
| download | Tango-f8c0a7d42104cf01ef6c3b0d51503a91ee0d7047.tar.gz Tango-f8c0a7d42104cf01ef6c3b0d51503a91ee0d7047.zip | |
MERGE.
Diffstat (limited to 'Software/Visual_Studio/Tango.CodeGeneration/CodeObjectModifier.cs')
| -rw-r--r-- | Software/Visual_Studio/Tango.CodeGeneration/CodeObjectModifier.cs | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/Software/Visual_Studio/Tango.CodeGeneration/CodeObjectModifier.cs b/Software/Visual_Studio/Tango.CodeGeneration/CodeObjectModifier.cs new file mode 100644 index 000000000..3d6be1b04 --- /dev/null +++ b/Software/Visual_Studio/Tango.CodeGeneration/CodeObjectModifier.cs @@ -0,0 +1,35 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace Tango.CodeGeneration +{ + /// <summary> + /// Represents a code object modifiers enumeration. + /// </summary> + public enum CodeObjectModifier + { + /// <summary> + /// Public modifier. + /// </summary> + Public, + /// <summary> + /// Internal modifier. + /// </summary> + Internal, + /// <summary> + /// Protected modifier. + /// </summary> + Protected, + /// <summary> + /// Private modifier. + /// </summary> + Private, + /// <summary> + /// No modifier. + /// </summary> + None, + } +} |
