inspircd/include/modes/cmode_b.h
danieldg b868bb52c5 Get rid of ModePair
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@11963 e03df62e-2008-0410-955e-edbf42e46eb7
2009-10-24 03:29:58 +00:00

36 lines
1.1 KiB
C++

/* +------------------------------------+
* | Inspire Internet Relay Chat Daemon |
* +------------------------------------+
*
* InspIRCd: (C) 2002-2009 InspIRCd Development Team
* See: http://wiki.inspircd.org/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();
ModeAction OnModeChange(User* source, User* dest, Channel* channel, std::string &parameter, bool adding);
std::string& AddBan(User *user,std::string& dest,Channel *chan,int status);
std::string& DelBan(User *user,std::string& dest,Channel *chan,int status);
void DisplayList(User* user, Channel* channel);
void DisplayEmptyList(User* user, Channel* channel);
void RemoveMode(User* user, irc::modestacker* stack = NULL);
void RemoveMode(Channel* channel, irc::modestacker* stack = NULL);
};