GtkSharp/gnomevfs/Handle.cs
Mike Kestner 7f3171c814 merge to HEAD of jeroen and friends' work on the 2-4 branch. HEAD
is now tracking Gnome 2.6.

svn path=/trunk/gtk-sharp/; revision=35479
2004-10-29 20:33:07 +00:00

28 lines
374 B
C#

//
// Handle.cs: Wrapper class for GnomeVFSHandle struct.
//
// Author:
// Jeroen Zwartepoorte <jeroen@xs4all.nl>
//
// (C) Copyright Jeroen Zwartepoorte 2004
//
using System;
namespace Gnome.Vfs {
public class Handle {
private IntPtr raw;
internal IntPtr Raw {
get {
return raw;
}
}
internal Handle (IntPtr raw)
{
this.raw = raw;
}
}
}