This commit was manufactured by cvs2svn to create branch 'mono-1-0'.
[mono.git] / mcs / ilasm / codegen / IInstr.cs
1 //
2 // Mono.ILASM.IInstr
3 //
4 // Author(s):
5 //  Jackson Harper (Jackson@LatitudeGeo.com)
6 //
7 // (C) 2003 Jackson Harper, All rights reserved
8 //
9
10
11 using System;
12
13 namespace Mono.ILASM {
14
15         public interface IInstr {
16
17                 /// <summary>
18                 ///  Add this instruction to the supplied codebuffer
19                 /// </summary>
20                 void Emit (CodeGen code_gen, MethodDef meth, 
21                            PEAPI.CILInstructions cil);
22         }
23
24 }
25