Mercurial > pidgin.yaz
view plugins/mono/api/GaimPlugin.cs @ 13220:ac5bc9a7b603
[gaim-migrate @ 15584]
SF Patch #1428582 from Casey Harkins
"The dbus stuff in gaim is using the namespace org.gaim.
gaim.org is obviously not associated with gaim and
chances are they would never need the dbus namespace.
Regardless, it would probably be better if gaim used
net.sf.gaim for the namespace. It'd be easier to
change now than after 2.0 is released since things
might start depending on gaim's dbus api. The dbus spec
and tutorial both suggest/imply (though don't strictly
require) that the namespace coorespond to a domain name
that you own."
committer: Tailor Script <tailor@pidgin.im>
author | Richard Laager <rlaager@wiktel.com> |
---|---|
date | Sat, 11 Feb 2006 05:25:47 +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(); } }