aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/Tango.CodeGeneration/CodeObjectModifier.cs
diff options
context:
space:
mode:
authorAvi Levkovich <avi@twine-s.com>2017-12-10 11:18:02 +0200
committerAvi Levkovich <avi@twine-s.com>2017-12-10 11:18:02 +0200
commitf8c0a7d42104cf01ef6c3b0d51503a91ee0d7047 (patch)
treeaa28e09c5d4c4a7da8e5fe5e00ffe355f6fc5a3f /Software/Visual_Studio/Tango.CodeGeneration/CodeObjectModifier.cs
parent8eec69d8933841f4e45fd9e63010bff51ae64a27 (diff)
parent9a34f6f6456702440ecd50f902e59daa2ea77595 (diff)
downloadTango-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.cs35
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,
+ }
+}