* ExternTypeRef.cs: New file - Represents a reference to a type in
[mono.git] / mcs / ilasm / codegen / ExternTypeRef.cs
1 //
2 // Mono.ILASM.ExternTypeRef
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         /// <summary>
16         /// A reference to a type in another assembly
17         /// </summary>
18         public class ExternTypeRef : PeapiTypeRef {
19
20                 public ExternTypeRef (PEAPI.ClassRef extern_type,
21                                 string full_name) : base (extern_type, full_name)
22                 {
23
24                 }
25         }
26
27 }
28