view plugins/mono/api/GaimPlugin.cs @ 13515:f5d4300aeed8

[gaim-migrate @ 15891] Fix sf bug #1443092, Events logging not working properly? "signed on" and "signed off" for people in your buddy list are now correctly logged to the system log. Richard, someone had already left a note in this function to make a change after the string freeze (I think it was you). We should still make a change after the string freeze, but the change is different now than it was before this commit. committer: Tailor Script <tailor@pidgin.im>
author Mark Doliner <mark@kingant.net>
date Wed, 15 Mar 2006 04:41:44 +0000
parents a3302d271199
children
line wrap: on
line source

namespace Gaim
{
	public class GaimPluginInfo
	{
		private string name;
		private string version;
		private string summary;
		private string description;
		private string author;
		private string homepage;
		
		public GaimPluginInfo(string name, string version, string summary, string description, string author, string homepage)
		{
			this.name = name;
			this.version = version;
			this.summary = summary;
			this.description = description;
			this.author = author;
			this.homepage = homepage;	
		}
		
		public string Name { get { return name; } }
		public string Version { get { return version; } }
		public string Summary { get { return summary; } }
		public string Description { get { return description; } }
		public string Author { get { return author; } }
		public string Homepage { get { return homepage; } }
	}
	
	abstract public class GaimPlugin
	{	
		public abstract void Load();
		public abstract void Unload();
		public abstract void Destroy();
		
		public abstract GaimPluginInfo Info();
	}
}