view plugins/mono/api/Event.cs @ 12188:762bb28154bf

[gaim-migrate @ 14490] Correctly handle 'Show timestamps' as a global preference that is only settable from the 'Options' menu in conversations committer: Tailor Script <tailor@pidgin.im>
author Mark Doliner <mark@kingant.net>
date Tue, 22 Nov 2005 05:21:42 +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);
		}
	}
}