2002-08-29 Rachel Hestilow <hestilow@ximian.com>
* glib/DelegateWrapper.cs: Forgot to add this. svn path=/trunk/gtk-sharp/; revision=7141
This commit is contained in:
parent
38e7bdeec5
commit
8f1c4ce766
2 changed files with 30 additions and 0 deletions
|
@ -1,3 +1,7 @@
|
|||
2002-08-29 Rachel Hestilow <hestilow@ximian.com>
|
||||
|
||||
* glib/DelegateWrapper.cs: Forgot to add this.
|
||||
|
||||
2002-08-28 Rachel Hestilow <hestilow@ximian.com>
|
||||
|
||||
* generator/CallbackGen.cs: Generate wrappers to map
|
||||
|
|
26
glib/DelegateWrapper.cs
Normal file
26
glib/DelegateWrapper.cs
Normal file
|
@ -0,0 +1,26 @@
|
|||
// 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 () {
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Reference in a new issue