mirror of
https://github.com/inspircd/inspircd.git
synced 2025-03-10 19:19:02 -04:00
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@5997 e03df62e-2008-0410-955e-edbf42e46eb7
36 lines
1.1 KiB
C++
36 lines
1.1 KiB
C++
/* +------------------------------------+
|
|
* | Inspire Internet Relay Chat Daemon |
|
|
* +------------------------------------+
|
|
*
|
|
* InspIRCd: (C) 2002-2007 InspIRCd Development Team
|
|
* See: http://www.inspircd.org/wiki/index.php/Credits
|
|
*
|
|
* This program is free but copyrighted software; see
|
|
* the file COPYING for details.
|
|
*
|
|
* ---------------------------------------------------
|
|
*/
|
|
|
|
#include "mode.h"
|
|
#include "channels.h"
|
|
|
|
class InspIRCd;
|
|
|
|
/** Channel mode +b
|
|
*/
|
|
class ModeChannelBan : public ModeHandler
|
|
{
|
|
private:
|
|
BanItem b;
|
|
public:
|
|
ModeChannelBan(InspIRCd* Instance);
|
|
ModeAction OnModeChange(userrec* source, userrec* dest, chanrec* channel, std::string ¶meter, bool adding);
|
|
std::string& AddBan(userrec *user,std::string& dest,chanrec *chan,int status);
|
|
std::string& DelBan(userrec *user,std::string& dest,chanrec *chan,int status);
|
|
void DisplayList(userrec* user, chanrec* channel);
|
|
ModePair ModeSet(userrec* source, userrec* dest, chanrec* channel, const std::string ¶meter);
|
|
void RemoveMode(userrec* user);
|
|
void RemoveMode(chanrec* channel);
|
|
};
|
|
|