mirror of
https://github.com/Ryujinx/GtkSharp.git
synced 2024-12-26 04:45:37 +00:00
8f1c4ce766
* glib/DelegateWrapper.cs: Forgot to add this. svn path=/trunk/gtk-sharp/; revision=7141
27 lines
455 B
C#
27 lines
455 B
C#
// DelegateWrapper.cs - Delegate wrapper implementation
|
|
//
|
|
// Author: Rachel Hestilow <hestilow@ximian.com>
|
|
//
|
|
// (c) 2002 Rachel Hestilow
|
|
|
|
namespace GLib {
|
|
|
|
using System;
|
|
using System.Collections;
|
|
|
|
/// <summary>
|
|
/// DelegateWrapper Class
|
|
/// </summary>
|
|
///
|
|
/// <remarks>
|
|
/// Wrapper class for delegates.
|
|
/// </remarks>
|
|
|
|
public class DelegateWrapper {
|
|
static ArrayList _instances = new ArrayList ();
|
|
|
|
protected DelegateWrapper () {
|
|
}
|
|
}
|
|
}
|