Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'mcs/ilasm/codegen/IClassRef.cs')
-rw-r--r--mcs/ilasm/codegen/IClassRef.cs33
1 files changed, 33 insertions, 0 deletions
diff --git a/mcs/ilasm/codegen/IClassRef.cs b/mcs/ilasm/codegen/IClassRef.cs
new file mode 100644
index 00000000000..699edad7292
--- /dev/null
+++ b/mcs/ilasm/codegen/IClassRef.cs
@@ -0,0 +1,33 @@
+//
+// Mono.ILASM.IClassRef
+//
+// Author(s):
+// Jackson Harper (Jackson@LatitudeGeo.com)
+// Ankit Jain (JAnkit@novell.com)
+//
+// (C) 2003 Jackson Harper, All rights reserved
+// (C) 2005 Novell, Inc (http://www.novell.com)
+//
+
+using System;
+
+namespace Mono.ILASM {
+
+ public interface BaseClassRef : BaseTypeRef {
+
+ PEAPI.Class PeapiClass { get; }
+
+ void MakeValueClass ();
+
+ IClassRef Clone ();
+
+ /* Returns the Generic Instance for the BaseClassRef */
+ GenericTypeInst GetGenericTypeInst (GenericArguments gen_args);
+
+ /* Resolves the Generic instance and returns the
+ resolved type (typically, PEAPI.GenericTypeInst) */
+ PEAPI.Type ResolveInstance (CodeGen code_gen, GenericArguments gen_args);
+ }
+
+}
+