10 lines
240 B
C#
10 lines
240 B
C#
using System.Text;
|
|
|
|
namespace Intromat.Model.Compiler
|
|
{
|
|
public interface IStatement
|
|
{
|
|
void Compile(CompilerContext context, StringBuilder sb);
|
|
void CompileHeader(CompilerContext context, StringBuilder sb);
|
|
}
|
|
} |