Mercurial > pidgin
view plugins/mono/api/Event.cs @ 12517:28bdd27bbb44
[gaim-migrate @ 14829]
I'm a good little sheep.
(Oh, and we haven't used tabs in NEWS in a while so I fixed it.)
committer: Tailor Script <tailor@pidgin.im>
| author | Etan Reisner <pidgin@unreliablesource.net> |
|---|---|
| date | Sat, 17 Dec 2005 04:59:39 +0000 |
| parents | a3302d271199 |
| children |
line wrap: on
line source
using System; namespace Gaim { 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); } } }
