diff options
author | brain <brain@e03df62e-2008-0410-955e-edbf42e46eb7> | 2008-05-01 19:56:16 +0000 |
---|---|---|
committer | brain <brain@e03df62e-2008-0410-955e-edbf42e46eb7> | 2008-05-01 19:56:16 +0000 |
commit | 0376f1d8be09a242befe207be4fa9e809d098557 (patch) | |
tree | fb4b48e61025a335d271efa39a622526f8517e50 /include/modes | |
parent | ef79134812eb0f3ef024fe57519dce05ec4fb401 (diff) |
Convert to SimpleUserModeHandler and SimpleChannelModeHandler
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@9599 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'include/modes')
-rw-r--r-- | include/modes/cmode_i.h | 4 | ||||
-rw-r--r-- | include/modes/cmode_m.h | 3 | ||||
-rw-r--r-- | include/modes/cmode_n.h | 3 | ||||
-rw-r--r-- | include/modes/cmode_p.h | 3 | ||||
-rw-r--r-- | include/modes/cmode_s.h | 3 | ||||
-rw-r--r-- | include/modes/umode_i.h | 3 | ||||
-rw-r--r-- | include/modes/umode_s.h | 3 | ||||
-rw-r--r-- | include/modes/umode_w.h | 3 |
8 files changed, 9 insertions, 16 deletions
diff --git a/include/modes/cmode_i.h b/include/modes/cmode_i.h index 5c83afb18..a59131ac5 100644 --- a/include/modes/cmode_i.h +++ b/include/modes/cmode_i.h @@ -17,9 +17,9 @@ class InspIRCd; /** Channel mode +i */ -class ModeChannelInviteOnly : public ModeHandler +class ModeChannelInviteOnly : public SimpleChannelModeHandler { public: ModeChannelInviteOnly(InspIRCd* Instance); - ModeAction OnModeChange(User* source, User* dest, Channel* channel, std::string ¶meter, bool adding, bool servermode); }; + diff --git a/include/modes/cmode_m.h b/include/modes/cmode_m.h index 69ec34703..6623014de 100644 --- a/include/modes/cmode_m.h +++ b/include/modes/cmode_m.h @@ -17,9 +17,8 @@ class InspIRCd; /** Channel mode +m */ -class ModeChannelModerated : public ModeHandler +class ModeChannelModerated : public SimpleChannelModeHandler { public: ModeChannelModerated(InspIRCd* Instance); - ModeAction OnModeChange(User* source, User* dest, Channel* channel, std::string ¶meter, bool adding, bool servermode); }; diff --git a/include/modes/cmode_n.h b/include/modes/cmode_n.h index ccc967ed2..b623904f7 100644 --- a/include/modes/cmode_n.h +++ b/include/modes/cmode_n.h @@ -17,9 +17,8 @@ class InspIRCd; /** Channel mode +n */ -class ModeChannelNoExternal : public ModeHandler +class ModeChannelNoExternal : public SimpleChannelModeHandler { public: ModeChannelNoExternal(InspIRCd* Instance); - ModeAction OnModeChange(User* source, User* dest, Channel* channel, std::string ¶meter, bool adding, bool servermode); }; diff --git a/include/modes/cmode_p.h b/include/modes/cmode_p.h index ac564d734..833ad6ef2 100644 --- a/include/modes/cmode_p.h +++ b/include/modes/cmode_p.h @@ -17,9 +17,8 @@ class InspIRCd; /** Channel mode +p */ -class ModeChannelPrivate : public ModeHandler +class ModeChannelPrivate : public SimpleChannelModeHandler { public: ModeChannelPrivate(InspIRCd* Instance); - ModeAction OnModeChange(User* source, User* dest, Channel* channel, std::string ¶meter, bool adding, bool servermode); }; diff --git a/include/modes/cmode_s.h b/include/modes/cmode_s.h index a6b2054c5..530394c99 100644 --- a/include/modes/cmode_s.h +++ b/include/modes/cmode_s.h @@ -17,9 +17,8 @@ class InspIRCd; /** Channel mode +s */ -class ModeChannelSecret : public ModeHandler +class ModeChannelSecret : public SimpleChannelModeHandler { public: ModeChannelSecret(InspIRCd* Instance); - ModeAction OnModeChange(User* source, User* dest, Channel* channel, std::string ¶meter, bool adding, bool servermode); }; diff --git a/include/modes/umode_i.h b/include/modes/umode_i.h index 83223b8fd..8a998973b 100644 --- a/include/modes/umode_i.h +++ b/include/modes/umode_i.h @@ -17,10 +17,9 @@ class InspIRCd; /** User mode +i */ -class ModeUserInvisible : public ModeHandler +class ModeUserInvisible : public SimpleUserModeHandler { public: ModeUserInvisible(InspIRCd* Instance); - ModeAction OnModeChange(User* source, User* dest, Channel* channel, std::string ¶meter, bool adding, bool servermode); unsigned int GetCount(); }; diff --git a/include/modes/umode_s.h b/include/modes/umode_s.h index 047defd87..4747b15d0 100644 --- a/include/modes/umode_s.h +++ b/include/modes/umode_s.h @@ -17,10 +17,9 @@ class InspIRCd; /** User mode +s */ -class ModeUserServerNotice : public ModeHandler +class ModeUserServerNotice : public SimpleUserModeHandler { public: ModeUserServerNotice(InspIRCd* Instance); - ModeAction OnModeChange(User* source, User* dest, Channel* channel, std::string ¶meter, bool adding, bool servermode); unsigned int GetCount(); }; diff --git a/include/modes/umode_w.h b/include/modes/umode_w.h index ac9adbc35..a45c64ef0 100644 --- a/include/modes/umode_w.h +++ b/include/modes/umode_w.h @@ -17,10 +17,9 @@ class InspIRCd; /** User mode +w */ -class ModeUserWallops : public ModeHandler +class ModeUserWallops : public SimpleUserModeHandler { public: ModeUserWallops(InspIRCd* Instance); - ModeAction OnModeChange(User* source, User* dest, Channel* channel, std::string ¶meter, bool adding, bool servermode); unsigned int GetCount(); }; |