Ryujinx-GtkSharp/glib/Boxed.cs
Mike Kestner 2c3cae3be8 2003-02-13 Mike Kestner <mkestner@speakeasy.net>
* glib/Boxed.cs : fix a ctor bug reported to the list by
	u900842@oz.nthu.edu.tw.

svn path=/trunk/gtk-sharp/; revision=11564
2003-02-14 01:16:05 +00:00

71 lines
1.0 KiB
C#

// GtkSharp.Boxed.cs - Base class for deriving marshallable structures.
//
// Author: Mike Kestner <mkestner@speakeasy.net>
//
// (c) 2001-2002 Mike Kestner
namespace GLib {
using System;
/// <summary>
/// Boxed Class
/// </summary>
///
/// <remarks>
/// An abstract base class to derive structures and marshal them.
/// </remarks>
public class Boxed {
object obj;
IntPtr raw;
/// <summary>
/// Boxed Constructor
/// </summary>
///
/// <remarks>
/// Constructs a Boxed type from a raw ref.
/// </remarks>
public Boxed (object o)
{
this.obj = o;
}
public Boxed (IntPtr ptr)
{
this.raw = ptr;
}
/// <summary>
/// Handle Property
/// </summary>
///
/// <remarks>
/// Gets a marshallable IntPtr.
/// </remarks>
public virtual IntPtr Handle {
get {
return raw;
}
set {
raw = value;
}
}
public static explicit operator System.IntPtr (Boxed boxed) {
return boxed.Handle;
}
public virtual object Obj {
get {
return obj;
}
set {
obj = value;
}
}
}
}