view libpurple/plugins/mono/api/GaimPlugin.cs @ 15461:e9c12873fae0

This renames the binary to 'pidgin', and I think it properly moves all the LIBDIR's to pidgin and purple, respectively
author Sean Egan <seanegan@gmail.com>
date Tue, 30 Jan 2007 05:27:44 +0000
parents 5fe8042783c1
children
line wrap: on
line source

namespace Gaim {
	public class PluginInfo {
		private string name;
		private string version;
		private string summary;
		private string description;
		private string author;
		private string homepage;
		
		public PluginInfo(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 Plugin {
		private PluginInfo info;

		public Plugin(PluginInfo info) {
			this.info = info;
		}

		public abstract void Load();
		public abstract void Unload();
		public abstract void Destroy();

		public PluginInfo Info {
			get { return info; }
		}
	}
}