1
0
mirror of https://github.com/anope/anope.git synced 2026-07-06 13:13:12 +02:00

Renamed Services to Service, keeping it more in line with the naming of other classes in the core.

git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@1815 5417fbe8-f217-4b02-8779-1006273d7864
This commit is contained in:
cyberbotx
2008-11-29 00:34:19 +00:00
parent 3e9413c835
commit 68deba3296
+3 -3
View File
@@ -1240,7 +1240,7 @@ struct capabinfo_ {
/*************************************************************************/
class CoreExport Services : public BotInfo
class CoreExport Service : public BotInfo
{
public:
/** Create a new Services pseudo-client
@@ -1249,10 +1249,10 @@ class CoreExport Services : public BotInfo
* @param host The hostname to assign to the pseudo-client.
* @param real The realname to assign to the pseudo-client.
*/
Services(const char *nick, const char *user, const char *host, const char *real);
Service(const char *nick, const char *user, const char *host, const char *real);
/** Destroy a pseudo-client, cleaning up appropriately.
*/
virtual ~Services();
virtual ~Service();
};
/*************************************************************************/