mirror of
https://github.com/Ryujinx/GtkSharp.git
synced 2024-12-23 19:45:37 +00:00
oops forgot a cvs add
svn path=/trunk/gtk-sharp/; revision=11921
This commit is contained in:
parent
95fc33f785
commit
470c852770
50
glib/Type.cs
Executable file
50
glib/Type.cs
Executable file
|
@ -0,0 +1,50 @@
|
|||
// GLib.Type.cs - GLib Type class implementation
|
||||
//
|
||||
// Author: Mike Kestner <mkestner@speakeasy.net>
|
||||
//
|
||||
// (c) 2003 Mike Kestner
|
||||
|
||||
namespace GLib {
|
||||
|
||||
using System;
|
||||
|
||||
/// <summary>
|
||||
/// Type Class
|
||||
/// </summary>
|
||||
///
|
||||
/// <remarks>
|
||||
/// An arbitrary data type similar to a CORBA Any which is used
|
||||
/// to get and set properties on Objects.
|
||||
/// </remarks>
|
||||
|
||||
public class Type {
|
||||
|
||||
uint val;
|
||||
|
||||
/// <summary>
|
||||
/// Type Constructor
|
||||
/// </summary>
|
||||
///
|
||||
/// <remarks>
|
||||
/// Constructs a new Type from a native GType value.
|
||||
/// </remarks>
|
||||
|
||||
public Type (uint val) {
|
||||
this.val = val;
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Value Property
|
||||
/// </summary>
|
||||
///
|
||||
/// <remarks>
|
||||
/// Gets the native value of a Type object.
|
||||
/// </remarks>
|
||||
|
||||
public uint Value {
|
||||
get {
|
||||
return val;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Reference in a new issue