Mercurial > pidgin
view libpurple/plugins/mono/api/PurplePlugin.cs @ 16733:a8e8482a2dc6
Clean up a few TODO's.
1) Update two old comments to reflect code.
2) Comment out escaping key and value in msim_send.
3) Add TODO for msim_send to support field types.
4) Update TODO for login2 command--'response' field must NOT be escaped.
5) Resolve TODO: add GUI options to change connect server and port.
author | Jeffrey Connelly <jaconnel@calpoly.edu> |
---|---|
date | Sun, 20 May 2007 19:12:32 +0000 |
parents | 80ee585fb53c |
children |
line wrap: on
line source
namespace Purple { public class PluginInfo { private string id; private string name; private string version; private string summary; private string description; private string author; private string homepage; public PluginInfo(string id, string name, string version, string summary, string description, string author, string homepage) { this.id = id; this.name = name; this.version = version; this.summary = summary; this.description = description; this.author = author; this.homepage = homepage; } public string Id { get { return id; } } 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; } } } }