diff --git a/ChangeLog b/ChangeLog index 96a6b9ad2..ca715634e 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +2002-08-29 Rachel Hestilow + + * glib/DelegateWrapper.cs: Forgot to add this. + 2002-08-28 Rachel Hestilow * generator/CallbackGen.cs: Generate wrappers to map diff --git a/glib/DelegateWrapper.cs b/glib/DelegateWrapper.cs new file mode 100644 index 000000000..e00fa4b34 --- /dev/null +++ b/glib/DelegateWrapper.cs @@ -0,0 +1,26 @@ +// DelegateWrapper.cs - Delegate wrapper implementation +// +// Author: Rachel Hestilow +// +// (c) 2002 Rachel Hestilow + +namespace GLib { + + using System; + using System.Collections; + + /// + /// DelegateWrapper Class + /// + /// + /// + /// Wrapper class for delegates. + /// + + public class DelegateWrapper { + static ArrayList _instances = new ArrayList (); + + protected DelegateWrapper () { + } + } +}