Initial revision
[mono.git] / mcs / mcs / generator.cs
1 //
2 // generator.cs: Generator interfaces.
3 //
4 // Author: Miguel de Icaza (miguel@gnu.org)
5 //
6 // Licensed under the terms of the GNU GPL
7 //
8 // (C) 2001 Ximian, Inc (http://www.ximian.com)
9 //
10
11 using System.IO;
12
13 namespace CIR {
14
15         public interface IGenerator {
16                 int GenerateFromTree (Tree tree, StreamWriter output);
17                 void ParseOptions (string options);
18         }
19 }