mirror of
https://github.com/anope/anope.git
synced 2026-06-25 03:46:36 +02:00
Convert all the derived module constructors to take the new parameter (sed must be worshipped). They still call the base constructor the wrong way.
git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@1577 5417fbe8-f217-4b02-8779-1006273d7864
This commit is contained in:
+1
-1
@@ -21,7 +21,7 @@ void myBotServHelp(User * u);
|
||||
class BSAct : public Module
|
||||
{
|
||||
public:
|
||||
BSAct(const std::string &creator) : Module(creator)
|
||||
BSAct(const std::string &modname, const std::string &creator) : Module(creator)
|
||||
{
|
||||
Command *c;
|
||||
|
||||
|
||||
@@ -21,7 +21,7 @@ void myBotServHelp(User * u);
|
||||
class BSAssign : public Module
|
||||
{
|
||||
public:
|
||||
BSAssign(const std::string &creator) : Module(creator)
|
||||
BSAssign(const std::string &modname, const std::string &creator) : Module(creator)
|
||||
{
|
||||
Command *c;
|
||||
|
||||
|
||||
@@ -24,7 +24,7 @@ int badwords_list_callback(User * u, int num, va_list args);
|
||||
class BSBadwords : public Module
|
||||
{
|
||||
public:
|
||||
BSBadwords(const std::string &creator) : Module(creator)
|
||||
BSBadwords(const std::string &modname, const std::string &creator) : Module(creator)
|
||||
{
|
||||
Command *c;
|
||||
|
||||
|
||||
+1
-1
@@ -21,7 +21,7 @@ void myBotServHelp(User * u);
|
||||
class BSBot : public Module
|
||||
{
|
||||
public:
|
||||
BSBot(const std::string &creator) : Module(creator)
|
||||
BSBot(const std::string &modname, const std::string &creator) : Module(creator)
|
||||
{
|
||||
Command *c;
|
||||
|
||||
|
||||
@@ -21,7 +21,7 @@ void myBotServHelp(User * u);
|
||||
class BSBotList : public Module
|
||||
{
|
||||
public:
|
||||
BSBotList(const std::string &creator) : Module(creator)
|
||||
BSBotList(const std::string &modname, const std::string &creator) : Module(creator)
|
||||
{
|
||||
Command *c;
|
||||
|
||||
|
||||
@@ -20,7 +20,7 @@ int do_fantasy(int argc, char **argv);
|
||||
class BSFantasy : public Module
|
||||
{
|
||||
public:
|
||||
BSFantasy(const std::string &creator) : Module(creator)
|
||||
BSFantasy(const std::string &modname, const std::string &creator) : Module(creator)
|
||||
{
|
||||
EvtHook *hook;
|
||||
|
||||
|
||||
@@ -20,7 +20,7 @@ int do_fantasy(int argc, char **argv);
|
||||
class BSFantasyKick : public Module
|
||||
{
|
||||
public:
|
||||
BSFantasyKick(const std::string &creator) : Module(creator)
|
||||
BSFantasyKick(const std::string &modname, const std::string &creator) : Module(creator)
|
||||
{
|
||||
EvtHook *hook;
|
||||
|
||||
|
||||
@@ -20,7 +20,7 @@ int do_fantasy(int argc, char **argv);
|
||||
class BSFantasyKickBan : public Module
|
||||
{
|
||||
public:
|
||||
BSFantasyKickBan(const std::string &creator) : Module(creator)
|
||||
BSFantasyKickBan(const std::string &modname, const std::string &creator) : Module(creator)
|
||||
{
|
||||
EvtHook *hook;
|
||||
|
||||
|
||||
@@ -20,7 +20,7 @@ int do_fantasy(int argc, char **argv);
|
||||
class BSFantasyOwner : public Module
|
||||
{
|
||||
public:
|
||||
BSFantasyOwner(const std::string &creator) : Module(creator)
|
||||
BSFantasyOwner(const std::string &modname, const std::string &creator) : Module(creator)
|
||||
{
|
||||
EvtHook *hook;
|
||||
|
||||
|
||||
@@ -20,7 +20,7 @@ int do_fantasy(int argc, char **argv);
|
||||
class BSFantasySeen : public Module
|
||||
{
|
||||
public:
|
||||
BSFantasySeen(const std::string &creator) : Module(creator)
|
||||
BSFantasySeen(const std::string &modname, const std::string &creator) : Module(creator)
|
||||
{
|
||||
EvtHook *hook;
|
||||
|
||||
|
||||
+1
-1
@@ -20,7 +20,7 @@ int do_help(User * u);
|
||||
class BSHelp : public Module
|
||||
{
|
||||
public:
|
||||
BSHelp(const std::string &creator) : Module(creator)
|
||||
BSHelp(const std::string &modname, const std::string &creator) : Module(creator)
|
||||
{
|
||||
Command *c;
|
||||
|
||||
|
||||
+1
-1
@@ -22,7 +22,7 @@ void myBotServHelp(User * u);
|
||||
class BSInfo : public Module
|
||||
{
|
||||
public:
|
||||
BSInfo(const std::string &creator) : Module(creator)
|
||||
BSInfo(const std::string &modname, const std::string &creator) : Module(creator)
|
||||
{
|
||||
Command *c;
|
||||
|
||||
|
||||
+1
-1
@@ -22,7 +22,7 @@ void myBotServHelp(User * u);
|
||||
class BSKick : public Module
|
||||
{
|
||||
public:
|
||||
BSKick(const std::string &creator) : Module(creator)
|
||||
BSKick(const std::string &modname, const std::string &creator) : Module(creator)
|
||||
{
|
||||
Command *c;
|
||||
|
||||
|
||||
+1
-1
@@ -21,7 +21,7 @@ void myBotServHelp(User * u);
|
||||
class BSSay : public Module
|
||||
{
|
||||
public:
|
||||
BSSay(const std::string &creator) : Module(creator)
|
||||
BSSay(const std::string &modname, const std::string &creator) : Module(creator)
|
||||
{
|
||||
Command *c;
|
||||
|
||||
|
||||
+1
-1
@@ -21,7 +21,7 @@ void myBotServHelp(User * u);
|
||||
class BSSet : public Module
|
||||
{
|
||||
public:
|
||||
BSSet(const std::string &creator) : Module(creator)
|
||||
BSSet(const std::string &modname, const std::string &creator) : Module(creator)
|
||||
{
|
||||
Command *c;
|
||||
|
||||
|
||||
@@ -21,7 +21,7 @@ void myBotServHelp(User * u);
|
||||
class BSUnassign : public Module
|
||||
{
|
||||
public:
|
||||
BSUnassign(const std::string &creator) : Module(creator)
|
||||
BSUnassign(const std::string &modname, const std::string &creator) : Module(creator)
|
||||
{
|
||||
Command *c;
|
||||
|
||||
|
||||
@@ -24,7 +24,7 @@ void myChanServHelp(User * u);
|
||||
class CSAccess : public Module
|
||||
{
|
||||
public:
|
||||
CSAccess(const std::string &creator) : Module(creator)
|
||||
CSAccess(const std::string &modname, const std::string &creator) : Module(creator)
|
||||
{
|
||||
Command *c;
|
||||
|
||||
|
||||
+1
-1
@@ -23,7 +23,7 @@ int get_access_nc(NickCore *nc, ChannelInfo *ci);
|
||||
class CSAKick : public Module
|
||||
{
|
||||
public:
|
||||
CSAKick(const std::string &creator) : Module(creator)
|
||||
CSAKick(const std::string &modname, const std::string &creator) : Module(creator)
|
||||
{
|
||||
Command *c;
|
||||
|
||||
|
||||
+1
-1
@@ -22,7 +22,7 @@ void myChanServHelp(User * u);
|
||||
class CSBan : public Module
|
||||
{
|
||||
public:
|
||||
CSBan(const std::string &creator) : Module(creator)
|
||||
CSBan(const std::string &modname, const std::string &creator) : Module(creator)
|
||||
{
|
||||
Command *c;
|
||||
|
||||
|
||||
+1
-1
@@ -21,7 +21,7 @@ void myChanServHelp(User * u);
|
||||
class CSClear : public Module
|
||||
{
|
||||
public:
|
||||
CSClear(const std::string &creator) : Module(creator)
|
||||
CSClear(const std::string &modname, const std::string &creator) : Module(creator)
|
||||
{
|
||||
Command *c;
|
||||
|
||||
|
||||
+1
-1
@@ -21,7 +21,7 @@ void myChanServHelp(User * u);
|
||||
class CSDrop : public Module
|
||||
{
|
||||
public:
|
||||
CSDrop(const std::string &creator) : Module(creator)
|
||||
CSDrop(const std::string &modname, const std::string &creator) : Module(creator)
|
||||
{
|
||||
Command *c;
|
||||
|
||||
|
||||
@@ -21,7 +21,7 @@ void myChanServHelp(User * u);
|
||||
class CSForbid : public Module
|
||||
{
|
||||
public:
|
||||
CSForbid(const std::string &creator) : Module(creator)
|
||||
CSForbid(const std::string &modname, const std::string &creator) : Module(creator)
|
||||
{
|
||||
Command *c;
|
||||
|
||||
|
||||
@@ -21,7 +21,7 @@ void myChanServHelp(User * u);
|
||||
class CSGetKey : public Module
|
||||
{
|
||||
public:
|
||||
CSGetKey(const std::string &creator) : Module(creator)
|
||||
CSGetKey(const std::string &modname, const std::string &creator) : Module(creator)
|
||||
{
|
||||
Command *c;
|
||||
|
||||
|
||||
@@ -21,7 +21,7 @@ void myChanServHelp(User * u);
|
||||
class CSGetPass : public Module
|
||||
{
|
||||
public:
|
||||
CSGetPass(const std::string &creator) : Module(creator)
|
||||
CSGetPass(const std::string &modname, const std::string &creator) : Module(creator)
|
||||
{
|
||||
Command *c;
|
||||
|
||||
|
||||
+1
-1
@@ -20,7 +20,7 @@ int do_help(User * u);
|
||||
class CSHelp : public Module
|
||||
{
|
||||
public:
|
||||
CSHelp(const std::string &creator) : Module(creator)
|
||||
CSHelp(const std::string &modname, const std::string &creator) : Module(creator)
|
||||
{
|
||||
Command *c;
|
||||
|
||||
|
||||
@@ -21,7 +21,7 @@ void myChanServHelp(User * u);
|
||||
class CSIdentify : public Module
|
||||
{
|
||||
public:
|
||||
CSIdentify(const std::string &creator) : Module(creator)
|
||||
CSIdentify(const std::string &modname, const std::string &creator) : Module(creator)
|
||||
{
|
||||
Command *c;
|
||||
|
||||
|
||||
+1
-1
@@ -21,7 +21,7 @@ void myChanServHelp(User * u);
|
||||
class CSInfo : public Module
|
||||
{
|
||||
public:
|
||||
CSInfo(const std::string &creator) : Module(creator)
|
||||
CSInfo(const std::string &modname, const std::string &creator) : Module(creator)
|
||||
{
|
||||
Command *c;
|
||||
|
||||
|
||||
@@ -21,7 +21,7 @@ int do_invite(User * u);
|
||||
class CSInvite : public Module
|
||||
{
|
||||
public:
|
||||
CSInvite(const std::string &creator) : Module(creator)
|
||||
CSInvite(const std::string &modname, const std::string &creator) : Module(creator)
|
||||
{
|
||||
Command *c;
|
||||
|
||||
|
||||
+1
-1
@@ -21,7 +21,7 @@ void myChanServHelp(User * u);
|
||||
class CSKick : public Module
|
||||
{
|
||||
public:
|
||||
CSKick(const std::string &creator) : Module(creator)
|
||||
CSKick(const std::string &modname, const std::string &creator) : Module(creator)
|
||||
{
|
||||
Command *c;
|
||||
|
||||
|
||||
+1
-1
@@ -21,7 +21,7 @@ void myChanServHelp(User * u);
|
||||
class CSList : public Module
|
||||
{
|
||||
public:
|
||||
CSList(const std::string &creator) : Module(creator)
|
||||
CSList(const std::string &modname, const std::string &creator) : Module(creator)
|
||||
{
|
||||
Command *c;
|
||||
|
||||
|
||||
@@ -22,7 +22,7 @@ void make_unidentified(User * u, ChannelInfo * ci);
|
||||
class CSLogout : public Module
|
||||
{
|
||||
public:
|
||||
CSLogout(const std::string &creator) : Module(creator)
|
||||
CSLogout(const std::string &modname, const std::string &creator) : Module(creator)
|
||||
{
|
||||
Command *c;
|
||||
|
||||
|
||||
+1
-1
@@ -31,7 +31,7 @@ int do_deowner(User * u);
|
||||
class CSModes : public Module
|
||||
{
|
||||
public:
|
||||
CSModes(const std::string &creator) : Module(creator)
|
||||
CSModes(const std::string &modname, const std::string &creator) : Module(creator)
|
||||
{
|
||||
Command *c;
|
||||
|
||||
|
||||
@@ -21,7 +21,7 @@ void myChanServHelp(User * u);
|
||||
class CSRegister : public Module
|
||||
{
|
||||
public:
|
||||
CSRegister(const std::string &creator) : Module(creator)
|
||||
CSRegister(const std::string &modname, const std::string &creator) : Module(creator)
|
||||
{
|
||||
Command *c;
|
||||
|
||||
|
||||
@@ -21,7 +21,7 @@ void myChanServHelp(User * u);
|
||||
class CSSendPass : public Module
|
||||
{
|
||||
public:
|
||||
CSSendPass(const std::string &creator) : Module(creator)
|
||||
CSSendPass(const std::string &modname, const std::string &creator) : Module(creator)
|
||||
{
|
||||
|
||||
Command *c;
|
||||
|
||||
+1
-1
@@ -43,7 +43,7 @@ void myChanServHelp(User * u);
|
||||
class CSSet : public Module
|
||||
{
|
||||
public:
|
||||
CSSet(const std::string &creator) : Module(creator)
|
||||
CSSet(const std::string &modname, const std::string &creator) : Module(creator)
|
||||
{
|
||||
Command *c;
|
||||
|
||||
|
||||
@@ -21,7 +21,7 @@ void myChanServHelp(User * u);
|
||||
class CSStatus : public Module
|
||||
{
|
||||
public:
|
||||
CSStatus(const std::string &creator) : Module(creator)
|
||||
CSStatus(const std::string &modname, const std::string &creator) : Module(creator)
|
||||
{
|
||||
Command *c;
|
||||
|
||||
|
||||
@@ -22,7 +22,7 @@ void myChanServHelp(User * u);
|
||||
class CSSuspend : public Module
|
||||
{
|
||||
public:
|
||||
CSSuspend(const std::string &creator) : Module(creator)
|
||||
CSSuspend(const std::string &modname, const std::string &creator) : Module(creator)
|
||||
{
|
||||
Command *c;
|
||||
|
||||
|
||||
+1
-1
@@ -21,7 +21,7 @@ void myChanServHelp(User * u);
|
||||
class CSTopic : public Module
|
||||
{
|
||||
public:
|
||||
CSTopic(const std::string &creator) : Module(creator)
|
||||
CSTopic(const std::string &modname, const std::string &creator) : Module(creator)
|
||||
{
|
||||
Command *c;
|
||||
|
||||
|
||||
+1
-1
@@ -85,7 +85,7 @@ int xop_msgs[4][14] = {
|
||||
class CSXOP : public Module
|
||||
{
|
||||
public:
|
||||
CSXOP(const std::string &creator) : Module(creator)
|
||||
CSXOP(const std::string &modname, const std::string &creator) : Module(creator)
|
||||
{
|
||||
Command *c;
|
||||
|
||||
|
||||
+1
-1
@@ -386,7 +386,7 @@ int md5_check_password(const char *plaintext, const char *password)
|
||||
class EMD5 : public Module
|
||||
{
|
||||
public:
|
||||
EMD5(const std::string &creator) : Module(creator)
|
||||
EMD5(const std::string &modname, const std::string &creator) : Module(creator)
|
||||
{
|
||||
moduleAddAuthor("Anope");
|
||||
moduleAddVersion("$Id$");
|
||||
|
||||
+1
-1
@@ -18,7 +18,7 @@ int plain_check_password(const char *plaintext, const char *password);
|
||||
class ENone : public Module
|
||||
{
|
||||
public:
|
||||
ENone(const std::string &creator) : Module(creator)
|
||||
ENone(const std::string &modname, const std::string &creator) : Module(creator)
|
||||
{
|
||||
moduleAddAuthor("Anope");
|
||||
moduleAddVersion("$Id$");
|
||||
|
||||
+1
-1
@@ -413,7 +413,7 @@ int old_decrypt(const char *src, char *dest, int size)
|
||||
class EOld : public Module
|
||||
{
|
||||
public:
|
||||
EOld(const std::string &creator) : Module(creator)
|
||||
EOld(const std::string &modname, const std::string &creator) : Module(creator)
|
||||
{
|
||||
moduleAddAuthor("Anope");
|
||||
moduleAddVersion("$Id$");
|
||||
|
||||
+1
-1
@@ -251,7 +251,7 @@ int sha1_check_password(const char *plaintext, const char *password)
|
||||
class ESHA1 : public Module
|
||||
{
|
||||
public:
|
||||
ESHA1(const std::string &creator) : Module(creator)
|
||||
ESHA1(const std::string &modname, const std::string &creator) : Module(creator)
|
||||
{
|
||||
moduleAddAuthor("Anope");
|
||||
moduleAddVersion("$Id$");
|
||||
|
||||
+1
-1
@@ -20,7 +20,7 @@ int do_help(User * u);
|
||||
class HEHelp : public Module
|
||||
{
|
||||
public:
|
||||
HEHelp(const std::string &creator) : Module(creator)
|
||||
HEHelp(const std::string &modname, const std::string &creator) : Module(creator)
|
||||
{
|
||||
Command *c;
|
||||
|
||||
|
||||
+1
-1
@@ -21,7 +21,7 @@ void myHostServHelp(User * u);
|
||||
class HSDel : public Module
|
||||
{
|
||||
public:
|
||||
HSDel(const std::string &creator) : Module(creator)
|
||||
HSDel(const std::string &modname, const std::string &creator) : Module(creator)
|
||||
{
|
||||
Command *c;
|
||||
|
||||
|
||||
@@ -21,7 +21,7 @@ void myHostServHelp(User * u);
|
||||
class HSDelAll : public Module
|
||||
{
|
||||
public:
|
||||
HSDelAll(const std::string &creator) : Module(creator)
|
||||
HSDelAll(const std::string &modname, const std::string &creator) : Module(creator)
|
||||
{
|
||||
Command *c;
|
||||
|
||||
|
||||
+1
-1
@@ -24,7 +24,7 @@ extern int do_hs_sync(NickCore * nc, char *vIdent, char *hostmask,
|
||||
class HSGroup : public Module
|
||||
{
|
||||
public:
|
||||
HSGroup(const std::string &creator) : Module(creator)
|
||||
HSGroup(const std::string &modname, const std::string &creator) : Module(creator)
|
||||
{
|
||||
Command *c;
|
||||
|
||||
|
||||
+1
-1
@@ -20,7 +20,7 @@ int do_help(User * u);
|
||||
class HSHelp : public Module
|
||||
{
|
||||
public:
|
||||
HSHelp(const std::string &creator) : Module(creator)
|
||||
HSHelp(const std::string &modname, const std::string &creator) : Module(creator)
|
||||
{
|
||||
Command *c;
|
||||
|
||||
|
||||
+1
-1
@@ -21,7 +21,7 @@ void myHostServHelp(User * u);
|
||||
class HSList : public Module
|
||||
{
|
||||
public:
|
||||
HSList(const std::string &creator) : Module(creator)
|
||||
HSList(const std::string &modname, const std::string &creator) : Module(creator)
|
||||
{
|
||||
Command *c;
|
||||
|
||||
|
||||
+1
-1
@@ -21,7 +21,7 @@ void myHostServHelp(User * u);
|
||||
class HSOff : public Module
|
||||
{
|
||||
public:
|
||||
HSOff(const std::string &creator) : Module(creator)
|
||||
HSOff(const std::string &modname, const std::string &creator) : Module(creator)
|
||||
{
|
||||
Command *c;
|
||||
|
||||
|
||||
+1
-1
@@ -21,7 +21,7 @@ void myHostServHelp(User * u);
|
||||
class HSOn : public Module
|
||||
{
|
||||
public:
|
||||
HSOn(const std::string &creator) : Module(creator)
|
||||
HSOn(const std::string &modname, const std::string &creator) : Module(creator)
|
||||
{
|
||||
Command *c;
|
||||
|
||||
|
||||
+1
-1
@@ -21,7 +21,7 @@ void myHostServHelp(User * u);
|
||||
class HSSet : public Module
|
||||
{
|
||||
public:
|
||||
HSSet(const std::string &creator) : Module(creator)
|
||||
HSSet(const std::string &modname, const std::string &creator) : Module(creator)
|
||||
{
|
||||
Command *c;
|
||||
|
||||
|
||||
@@ -23,7 +23,7 @@ extern int do_hs_sync(NickCore * nc, char *vIdent, char *hostmask,
|
||||
class HSSetAll : public Module
|
||||
{
|
||||
public:
|
||||
HSSetAll(const std::string &creator) : Module(creator)
|
||||
HSSetAll(const std::string &modname, const std::string &creator) : Module(creator)
|
||||
{
|
||||
Command *c;
|
||||
|
||||
|
||||
@@ -21,7 +21,7 @@ void myMemoServHelp(User * u);
|
||||
class MSCancel : public Module
|
||||
{
|
||||
public:
|
||||
MSCancel(const std::string &creator) : Module(creator)
|
||||
MSCancel(const std::string &modname, const std::string &creator) : Module(creator)
|
||||
{
|
||||
Command *c;
|
||||
|
||||
|
||||
+1
-1
@@ -21,7 +21,7 @@ void myMemoServHelp(User * u);
|
||||
class MSCheck : public Module
|
||||
{
|
||||
public:
|
||||
MSCheck(const std::string &creator) : Module(creator)
|
||||
MSCheck(const std::string &modname, const std::string &creator) : Module(creator)
|
||||
{
|
||||
Command *c;
|
||||
|
||||
|
||||
+1
-1
@@ -22,7 +22,7 @@ void myMemoServHelp(User * u);
|
||||
class MSDel : public Module
|
||||
{
|
||||
public:
|
||||
MSDel(const std::string &creator) : Module(creator)
|
||||
MSDel(const std::string &modname, const std::string &creator) : Module(creator)
|
||||
{
|
||||
Command *c;
|
||||
|
||||
|
||||
+1
-1
@@ -20,7 +20,7 @@ int do_help(User * u);
|
||||
class MSHelp : public Module
|
||||
{
|
||||
public:
|
||||
MSHelp(const std::string &creator) : Module(creator)
|
||||
MSHelp(const std::string &modname, const std::string &creator) : Module(creator)
|
||||
{
|
||||
Command *c;
|
||||
|
||||
|
||||
+1
-1
@@ -21,7 +21,7 @@ void myMemoServHelp(User * u);
|
||||
class MSInfo : public Module
|
||||
{
|
||||
public:
|
||||
MSInfo(const std::string &creator) : Module(creator)
|
||||
MSInfo(const std::string &modname, const std::string &creator) : Module(creator)
|
||||
{
|
||||
Command *c;
|
||||
|
||||
|
||||
+1
-1
@@ -22,7 +22,7 @@ void myMemoServHelp(User * u);
|
||||
class MSList : public Module
|
||||
{
|
||||
public:
|
||||
MSList(const std::string &creator) : Module(creator)
|
||||
MSList(const std::string &modname, const std::string &creator) : Module(creator)
|
||||
{
|
||||
Command *c;
|
||||
|
||||
|
||||
+1
-1
@@ -25,7 +25,7 @@ extern void rsend_notify(User * u, Memo * m, const char *chan);
|
||||
class MSRead : public Module
|
||||
{
|
||||
public:
|
||||
MSRead(const std::string &creator) : Module(creator)
|
||||
MSRead(const std::string &modname, const std::string &creator) : Module(creator)
|
||||
{
|
||||
Command *c;
|
||||
|
||||
|
||||
+1
-1
@@ -21,7 +21,7 @@ void myMemoServHelp(User * u);
|
||||
class MSRSend : public Module
|
||||
{
|
||||
public:
|
||||
MSRSend(const std::string &creator) : Module(creator)
|
||||
MSRSend(const std::string &modname, const std::string &creator) : Module(creator)
|
||||
{
|
||||
Command *c;
|
||||
|
||||
|
||||
+1
-1
@@ -21,7 +21,7 @@ void myMemoServHelp(User * u);
|
||||
class MSSend : public Module
|
||||
{
|
||||
public:
|
||||
MSSend(const std::string &creator) : Module(creator)
|
||||
MSSend(const std::string &modname, const std::string &creator) : Module(creator)
|
||||
{
|
||||
Command *c;
|
||||
|
||||
|
||||
@@ -21,7 +21,7 @@ void myMemoServHelp(User * u);
|
||||
class MSSendAll : public Module
|
||||
{
|
||||
public:
|
||||
MSSendAll(const std::string &creator) : Module(creator)
|
||||
MSSendAll(const std::string &modname, const std::string &creator) : Module(creator)
|
||||
{
|
||||
Command *c;
|
||||
|
||||
|
||||
+1
-1
@@ -23,7 +23,7 @@ void myMemoServHelp(User * u);
|
||||
class MSSet : public Module
|
||||
{
|
||||
public:
|
||||
MSSet(const std::string &creator) : Module(creator)
|
||||
MSSet(const std::string &modname, const std::string &creator) : Module(creator)
|
||||
{
|
||||
Command *c;
|
||||
|
||||
|
||||
+1
-1
@@ -21,7 +21,7 @@ void myMemoServHelp(User * u);
|
||||
class MSStaff : public Module
|
||||
{
|
||||
public:
|
||||
MSStaff(const std::string &creator) : Module(creator)
|
||||
MSStaff(const std::string &modname, const std::string &creator) : Module(creator)
|
||||
{
|
||||
Command *c;
|
||||
|
||||
|
||||
@@ -21,7 +21,7 @@ void myNickServHelp(User * u);
|
||||
class NSAccess : public Module
|
||||
{
|
||||
public:
|
||||
NSAccess(const std::string &creator) : Module(creator)
|
||||
NSAccess(const std::string &modname, const std::string &creator) : Module(creator)
|
||||
{
|
||||
Command *c;
|
||||
|
||||
|
||||
+1
-1
@@ -21,7 +21,7 @@ void myNickServHelp(User * u);
|
||||
class NSAList : public Module
|
||||
{
|
||||
public:
|
||||
NSAList(const std::string &creator) : Module(creator)
|
||||
NSAList(const std::string &modname, const std::string &creator) : Module(creator)
|
||||
{
|
||||
Command *c;
|
||||
|
||||
|
||||
+1
-1
@@ -22,7 +22,7 @@ void myNickServHelp(User * u);
|
||||
class NSDrop : public Module
|
||||
{
|
||||
public:
|
||||
NSDrop(const std::string &creator) : Module(creator)
|
||||
NSDrop(const std::string &modname, const std::string &creator) : Module(creator)
|
||||
{
|
||||
Command *c;
|
||||
|
||||
|
||||
@@ -22,7 +22,7 @@ NickAlias *makenick(const char *nick);
|
||||
class NSForbid : public Module
|
||||
{
|
||||
public:
|
||||
NSForbid(const std::string &creator) : Module(creator)
|
||||
NSForbid(const std::string &modname, const std::string &creator) : Module(creator)
|
||||
{
|
||||
Command *c;
|
||||
|
||||
|
||||
@@ -26,7 +26,7 @@ void myNickServHelp(User * u);
|
||||
class NSGetEMail : public Module
|
||||
{
|
||||
public:
|
||||
NSGetEMail(const std::string &creator) : Module(creator)
|
||||
NSGetEMail(const std::string &modname, const std::string &creator) : Module(creator)
|
||||
{
|
||||
Command *c;
|
||||
|
||||
|
||||
@@ -21,7 +21,7 @@ void myNickServHelp(User * u);
|
||||
class NSGetPass : public Module
|
||||
{
|
||||
public:
|
||||
NSGetPass(const std::string &creator) : Module(creator)
|
||||
NSGetPass(const std::string &modname, const std::string &creator) : Module(creator)
|
||||
{
|
||||
Command *c;
|
||||
|
||||
|
||||
+1
-1
@@ -21,7 +21,7 @@ void myNickServHelp(User * u);
|
||||
class NSGhost : public Module
|
||||
{
|
||||
public:
|
||||
NSGhost(const std::string &creator) : Module(creator)
|
||||
NSGhost(const std::string &modname, const std::string &creator) : Module(creator)
|
||||
{
|
||||
Command *c;
|
||||
|
||||
|
||||
+1
-1
@@ -28,7 +28,7 @@ int do_link(User * u);
|
||||
class NSGroup : public Module
|
||||
{
|
||||
public:
|
||||
NSGroup(const std::string &creator) : Module(creator)
|
||||
NSGroup(const std::string &modname, const std::string &creator) : Module(creator)
|
||||
{
|
||||
Command *c;
|
||||
|
||||
|
||||
+1
-1
@@ -20,7 +20,7 @@ int do_help(User * u);
|
||||
class NSHelp : public Module
|
||||
{
|
||||
public:
|
||||
NSHelp(const std::string &creator) : Module(creator)
|
||||
NSHelp(const std::string &modname, const std::string &creator) : Module(creator)
|
||||
{
|
||||
Command *c;
|
||||
|
||||
|
||||
@@ -25,7 +25,7 @@ void myNickServHelp(User * u);
|
||||
class NSIdentify : public Module
|
||||
{
|
||||
public:
|
||||
NSIdentify(const std::string &creator) : Module(creator)
|
||||
NSIdentify(const std::string &modname, const std::string &creator) : Module(creator)
|
||||
{
|
||||
Command *c;
|
||||
|
||||
|
||||
+1
-1
@@ -21,7 +21,7 @@ void myNickServHelp(User * u);
|
||||
class NSInfo : public Module
|
||||
{
|
||||
public:
|
||||
NSInfo(const std::string &creator) : Module(creator)
|
||||
NSInfo(const std::string &modname, const std::string &creator) : Module(creator)
|
||||
{
|
||||
Command *c;
|
||||
|
||||
|
||||
+1
-1
@@ -21,7 +21,7 @@ void myNickServHelp(User * u);
|
||||
class NSList : public Module
|
||||
{
|
||||
public:
|
||||
NSList(const std::string &creator) : Module(creator)
|
||||
NSList(const std::string &modname, const std::string &creator) : Module(creator)
|
||||
{
|
||||
Command *c;
|
||||
|
||||
|
||||
@@ -24,7 +24,7 @@ void myNickServHelp(User * u);
|
||||
class NSLogout : public Module
|
||||
{
|
||||
public:
|
||||
NSLogout(const std::string &creator) : Module(creator)
|
||||
NSLogout(const std::string &modname, const std::string &creator) : Module(creator)
|
||||
{
|
||||
Command *c;
|
||||
|
||||
|
||||
@@ -24,7 +24,7 @@ int myHelpResonse(User * u);
|
||||
class NSRecover : public Module
|
||||
{
|
||||
public:
|
||||
NSRecover(const std::string &creator) : Module(creator)
|
||||
NSRecover(const std::string &modname, const std::string &creator) : Module(creator)
|
||||
{
|
||||
moduleAddAuthor("Anope");
|
||||
moduleAddVersion("$Id$");
|
||||
|
||||
@@ -28,7 +28,7 @@ int ns_do_register(User * u);
|
||||
class NSRegister : public Module
|
||||
{
|
||||
public:
|
||||
NSRegister(const std::string &creator) : Module(creator)
|
||||
NSRegister(const std::string &modname, const std::string &creator) : Module(creator)
|
||||
{
|
||||
Command *c;
|
||||
|
||||
|
||||
@@ -24,7 +24,7 @@ int myHelpResonse(User * u);
|
||||
class NSRelease : public Module
|
||||
{
|
||||
public:
|
||||
NSRelease(const std::string &creator) : Module(creator)
|
||||
NSRelease(const std::string &modname, const std::string &creator) : Module(creator)
|
||||
{
|
||||
moduleAddAuthor("Anope");
|
||||
moduleAddVersion("$Id$");
|
||||
|
||||
+1
-1
@@ -36,7 +36,7 @@ void myNickServHelp(User * u);
|
||||
class NSSASet : public Module
|
||||
{
|
||||
public:
|
||||
NSSASet(const std::string &creator) : Module(creator)
|
||||
NSSASet(const std::string &modname, const std::string &creator) : Module(creator)
|
||||
{
|
||||
Command *c;
|
||||
|
||||
|
||||
@@ -22,7 +22,7 @@ void myNickServHelp(User * u);
|
||||
class NSSendPass : public Module
|
||||
{
|
||||
public:
|
||||
NSSendPass(const std::string &creator) : Module(creator)
|
||||
NSSendPass(const std::string &modname, const std::string &creator) : Module(creator)
|
||||
{
|
||||
Command *c;
|
||||
|
||||
|
||||
+1
-1
@@ -35,7 +35,7 @@ void myNickServHelp(User * u);
|
||||
class NSSet : public Module
|
||||
{
|
||||
public:
|
||||
NSSet(const std::string &creator) : Module(creator)
|
||||
NSSet(const std::string &modname, const std::string &creator) : Module(creator)
|
||||
{
|
||||
Command *c;
|
||||
|
||||
|
||||
@@ -21,7 +21,7 @@ void myNickServHelp(User * u);
|
||||
class NSStatus : public Module
|
||||
{
|
||||
public:
|
||||
NSStatus(const std::string &creator) : Module(creator)
|
||||
NSStatus(const std::string &modname, const std::string &creator) : Module(creator)
|
||||
{
|
||||
Command *c;
|
||||
|
||||
|
||||
@@ -22,7 +22,7 @@ void myNickServHelp(User * u);
|
||||
class NSSuspend : public Module
|
||||
{
|
||||
public:
|
||||
NSSuspend(const std::string &creator) : Module(creator)
|
||||
NSSuspend(const std::string &modname, const std::string &creator) : Module(creator)
|
||||
{
|
||||
Command *c;
|
||||
|
||||
|
||||
@@ -21,7 +21,7 @@ void myNickServHelp(User * u);
|
||||
class NSUpdate : public Module
|
||||
{
|
||||
public:
|
||||
NSUpdate(const std::string &creator) : Module(creator)
|
||||
NSUpdate(const std::string &modname, const std::string &creator) : Module(creator)
|
||||
{
|
||||
Command *c;
|
||||
|
||||
|
||||
+1
-1
@@ -24,7 +24,7 @@ void myOperServHelp(User * u);
|
||||
class OSAdmin : public Module
|
||||
{
|
||||
public:
|
||||
OSAdmin(const std::string &creator) : Module(creator)
|
||||
OSAdmin(const std::string &modname, const std::string &creator) : Module(creator)
|
||||
{
|
||||
Command *c;
|
||||
|
||||
|
||||
+1
-1
@@ -27,7 +27,7 @@ void myOperServHelp(User * u);
|
||||
class OSAKill : public Module
|
||||
{
|
||||
public:
|
||||
OSAKill(const std::string &creator) : Module(creator)
|
||||
OSAKill(const std::string &modname, const std::string &creator) : Module(creator)
|
||||
{
|
||||
Command *c;
|
||||
|
||||
|
||||
@@ -21,7 +21,7 @@ void myOperServHelp(User * u);
|
||||
class OSChanKill : public Module
|
||||
{
|
||||
public:
|
||||
OSChanKill(const std::string &creator) : Module(creator)
|
||||
OSChanKill(const std::string &modname, const std::string &creator) : Module(creator)
|
||||
{
|
||||
Command *c;
|
||||
|
||||
|
||||
@@ -24,7 +24,7 @@ extern MDE int anope_get_private_mode();
|
||||
class OSChanList : public Module
|
||||
{
|
||||
public:
|
||||
OSChanList(const std::string &creator) : Module(creator)
|
||||
OSChanList(const std::string &modname, const std::string &creator) : Module(creator)
|
||||
{
|
||||
Command *c;
|
||||
|
||||
|
||||
@@ -21,7 +21,7 @@ void myOperServHelp(User * u);
|
||||
class OSClearModes : public Module
|
||||
{
|
||||
public:
|
||||
OSClearModes(const std::string &creator) : Module(creator)
|
||||
OSClearModes(const std::string &modname, const std::string &creator) : Module(creator)
|
||||
{
|
||||
Command *c;
|
||||
|
||||
|
||||
@@ -27,7 +27,7 @@ void myOperServHelp(User * u);
|
||||
class OSDEFCON : public Module
|
||||
{
|
||||
public:
|
||||
OSDEFCON(const std::string &creator) : Module(creator)
|
||||
OSDEFCON(const std::string &modname, const std::string &creator) : Module(creator)
|
||||
{
|
||||
Command *c;
|
||||
|
||||
|
||||
@@ -21,7 +21,7 @@ void myOperServHelp(User * u);
|
||||
class OSGlobal : public Module
|
||||
{
|
||||
public:
|
||||
OSGlobal(const std::string &creator) : Module(creator)
|
||||
OSGlobal(const std::string &modname, const std::string &creator) : Module(creator)
|
||||
{
|
||||
Command *c;
|
||||
|
||||
|
||||
+1
-1
@@ -20,7 +20,7 @@ int do_help(User * u);
|
||||
class OSHelp : public Module
|
||||
{
|
||||
public:
|
||||
OSHelp(const std::string &creator) : Module(creator)
|
||||
OSHelp(const std::string &modname, const std::string &creator) : Module(creator)
|
||||
{
|
||||
Command *c;
|
||||
|
||||
|
||||
@@ -22,7 +22,7 @@ int do_ignoreuser(User * u);
|
||||
class OSIgnore : public Module
|
||||
{
|
||||
public:
|
||||
OSIgnore(const std::string &creator) : Module(creator)
|
||||
OSIgnore(const std::string &modname, const std::string &creator) : Module(creator)
|
||||
{
|
||||
Command *c;
|
||||
|
||||
|
||||
+1
-1
@@ -21,7 +21,7 @@ void myOperServHelp(User * u);
|
||||
class OSJupe : public Module
|
||||
{
|
||||
public:
|
||||
OSJupe(const std::string &creator) : Module(creator)
|
||||
OSJupe(const std::string &modname, const std::string &creator) : Module(creator)
|
||||
{
|
||||
Command *c;
|
||||
|
||||
|
||||
+1
-1
@@ -21,7 +21,7 @@ void myOperServHelp(User * u);
|
||||
class OSKick : public Module
|
||||
{
|
||||
public:
|
||||
OSKick(const std::string &creator) : Module(creator)
|
||||
OSKick(const std::string &modname, const std::string &creator) : Module(creator)
|
||||
{
|
||||
Command *c;
|
||||
|
||||
|
||||
@@ -24,7 +24,7 @@ int reload_config(int argc, char **argv);
|
||||
class OSLogonNews : public Module
|
||||
{
|
||||
public:
|
||||
OSLogonNews(const std::string &creator) : Module(creator)
|
||||
OSLogonNews(const std::string &modname, const std::string &creator) : Module(creator)
|
||||
{
|
||||
EvtHook *hook;
|
||||
char buf[BUFSIZE];
|
||||
|
||||
+1
-1
@@ -21,7 +21,7 @@ void myOperServHelp(User * u);
|
||||
class OSMode : public Module
|
||||
{
|
||||
public:
|
||||
OSMode(const std::string &creator) : Module(creator)
|
||||
OSMode(const std::string &modname, const std::string &creator) : Module(creator)
|
||||
{
|
||||
Command *c;
|
||||
|
||||
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user