15432372a6
* glib/IWrapper.cs : remove set_Handle * glib/Object.cs : ditto * glib/Opaque.cs : ditto svn path=/trunk/gtk-sharp/; revision=6835
15 lines
236 B
C#
15 lines
236 B
C#
// IWrapper.cs - Common code for GInterfaces and GObjects
|
|
//
|
|
// Author: Rachel Hestilow <hesitlow@ximian.com>
|
|
//
|
|
// (c) 2002 Rachel Hestilow
|
|
|
|
namespace GLib
|
|
{
|
|
using System;
|
|
|
|
public interface IWrapper
|
|
{
|
|
IntPtr Handle { get; }
|
|
}
|
|
}
|