X-Git-Url: https://git.netwichtig.de/gitweb/?a=blobdiff_plain;f=include%2Fmodes%2Fumode_w.h;h=ac9adbc35cfa21570b44281615df9409f3810ddd;hb=8c2d96013084de950e3a63be4ae6ed626c4093ab;hp=26e21446035631433a4ce9e00d09ee54118160eb;hpb=bab14f0dd2345c9d7dcbc47c918563709e1ac094;p=user%2Fhenk%2Fcode%2Finspircd.git diff --git a/include/modes/umode_w.h b/include/modes/umode_w.h index 26e214460..ac9adbc35 100644 --- a/include/modes/umode_w.h +++ b/include/modes/umode_w.h @@ -1 +1,26 @@ -/* +------------------------------------+ * | 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" class InspIRCd; /** User mode +w */ class ModeUserWallops : public ModeHandler { public: ModeUserWallops(InspIRCd* Instance); ModeAction OnModeChange(userrec* source, userrec* dest, chanrec* channel, std::string ¶meter, bool adding); unsigned int GetCount(); }; \ No newline at end of file +/* +------------------------------------+ + * | Inspire Internet Relay Chat Daemon | + * +------------------------------------+ + * + * InspIRCd: (C) 2002-2008 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" + +class InspIRCd; + +/** User mode +w + */ +class ModeUserWallops : public ModeHandler +{ + public: + ModeUserWallops(InspIRCd* Instance); + ModeAction OnModeChange(User* source, User* dest, Channel* channel, std::string ¶meter, bool adding, bool servermode); + unsigned int GetCount(); +};