* roottypes.cs: Rename from tree.cs.
[mono.git] / mcs / ilasm / codegen / IMethodRef.cs
1 //
2 // Mono.ILASM.IMethodRef
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
14 namespace Mono.ILASM {
15
16         public interface IMethodRef {
17
18                 PEAPI.Method PeapiMethod {
19                         get;
20                 }
21
22                 PEAPI.CallConv CallConv {
23                         get;
24                         set;
25                 }
26
27                 void Resolve (CodeGen code_gen);
28
29                 BaseTypeRef Owner {
30                         get;
31                 }
32         }
33
34 }
35
36
37