// GLib.Type.cs - GLib Type class implementation // // Author: Mike Kestner // // (c) 2003 Mike Kestner namespace GLib { using System; /// /// Type Class /// /// /// /// An arbitrary data type similar to a CORBA Any which is used /// to get and set properties on Objects. /// public class Type { uint val; /// /// Type Constructor /// /// /// /// Constructs a new Type from a native GType value. /// public Type (uint val) { this.val = val; } /// /// Value Property /// /// /// /// Gets the native value of a Type object. /// public uint Value { get { return val; } } public override string ToString() { return val.ToString(); } } }