aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorGravatar brain2006-07-07 21:51:33 +0000
committerGravatar brain2006-07-07 21:51:33 +0000
commit21480d6f6500637f63ea620eefbab03f69f7cfee (patch)
tree0be7ce6982862ac265bf29aef5d8c163947f644d /include
parentRemove the transposition of @ and ! stuff, doesnt work right and not a good e... (diff)
downloadinspircd++-21480d6f6500637f63ea620eefbab03f69f7cfee.tar.gz
inspircd++-21480d6f6500637f63ea620eefbab03f69f7cfee.tar.bz2
inspircd++-21480d6f6500637f63ea620eefbab03f69f7cfee.zip
Move BanItem into the class
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@4152 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'include')
-rw-r--r--include/modes/cmode_b.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/include/modes/cmode_b.h b/include/modes/cmode_b.h
index 4c41e3250..60462d73a 100644
--- a/include/modes/cmode_b.h
+++ b/include/modes/cmode_b.h
@@ -1,7 +1,10 @@
#include "mode.h"
+#include "channels.h"
class ModeChannelBan : public ModeHandler
{
+ private:
+ BanItem b;
public:
ModeChannelBan();
ModeAction OnModeChange(userrec* source, userrec* dest, chanrec* channel, std::string &parameter, bool adding);