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/ICodeObject.cs | 24 ++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 Software/Visual_Studio/Tango.CodeGeneration/ICodeObject.cs (limited to 'Software/Visual_Studio/Tango.CodeGeneration/ICodeObject.cs') diff --git a/Software/Visual_Studio/Tango.CodeGeneration/ICodeObject.cs b/Software/Visual_Studio/Tango.CodeGeneration/ICodeObject.cs new file mode 100644 index 000000000..044235813 --- /dev/null +++ b/Software/Visual_Studio/Tango.CodeGeneration/ICodeObject.cs @@ -0,0 +1,24 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace Tango.CodeGeneration +{ + /// + /// Represents a code object. + /// + public interface ICodeObject + { + /// + /// Generates the code represented by this code object. + /// + String GenerateCode(); + + /// + /// Gets the template associated with this code object. + /// + String GetTemplate(); + } +} -- cgit v1.3.1