Mercurial > pidgin
view libpurple/plugins/mono/api/Event.cs @ 28899:bca64f4e4ce5
merge of '7c5666620054a24425f455a96975fbf6174ad8a0'
and 'bbcf4976b4db49082dcd52239fe155eb95c4ee1a'
| author | Elliott Sales de Andrade <qulogic@pidgin.im> |
|---|---|
| date | Tue, 19 Jan 2010 06:33:18 +0000 |
| parents | 93bfbda79bf6 |
| children |
line wrap: on
line source
using System; namespace Purple { public class Event { private IntPtr handle; private string signal; public Event(IntPtr h, string s) { handle = h; signal = s; } public void connect(object plugin, Signal.Handler handler) { Signal.connect(handle, plugin, signal, handler); } } }
