diff options
Diffstat (limited to 'Software/Visual_Studio/Tango.CodeGeneration/ICodeObject.cs')
| -rw-r--r-- | Software/Visual_Studio/Tango.CodeGeneration/ICodeObject.cs | 24 |
1 files changed, 24 insertions, 0 deletions
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 +{ + /// <summary> + /// Represents a code object. + /// </summary> + public interface ICodeObject + { + /// <summary> + /// Generates the code represented by this code object. + /// </summary> + String GenerateCode(); + + /// <summary> + /// Gets the template associated with this code object. + /// </summary> + String GetTemplate(); + } +} |
