From 68deba3296c5275751004bbb2237d3e073bf0005 Mon Sep 17 00:00:00 2001 From: cyberbotx Date: Sat, 29 Nov 2008 00:34:19 +0000 Subject: [PATCH] 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 --- include/services.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/include/services.h b/include/services.h index 76174dad6..587519298 100644 --- a/include/services.h +++ b/include/services.h @@ -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(); }; /*************************************************************************/