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(); } }