From 3689238cb9ca77cbd7fa34dbd15003af87266e36 Mon Sep 17 00:00:00 2001 From: Roy Ben-Shabat Date: Mon, 4 Dec 2017 18:44:33 +0200 Subject: Added Code Generation Library. --- .../Tango.CodeGeneration/CodeObjectModifier.cs | 35 ++++++++++++++++++++++ 1 file changed, 35 insertions(+) create mode 100644 Software/Visual_Studio/Tango.CodeGeneration/CodeObjectModifier.cs (limited to 'Software/Visual_Studio/Tango.CodeGeneration/CodeObjectModifier.cs') 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 +{ + /// + /// Represents a code object modifiers enumeration. + /// + public enum CodeObjectModifier + { + /// + /// Public modifier. + /// + Public, + /// + /// Internal modifier. + /// + Internal, + /// + /// Protected modifier. + /// + Protected, + /// + /// Private modifier. + /// + Private, + /// + /// No modifier. + /// + None, + } +} -- cgit v1.3.1