2007-07-16 17:30:04 +00:00
|
|
|
/* +------------------------------------+
|
|
|
|
* | Inspire Internet Relay Chat Daemon |
|
|
|
|
* +------------------------------------+
|
|
|
|
*
|
2009-01-02 18:16:05 +00:00
|
|
|
* InspIRCd: (C) 2002-2009 InspIRCd Development Team
|
2009-03-15 12:42:35 +00:00
|
|
|
* See: http://wiki.inspircd.org/Credits
|
2007-07-16 17:30:04 +00:00
|
|
|
*
|
|
|
|
* This program is free but copyrighted software; see
|
|
|
|
* the file COPYING for details.
|
|
|
|
*
|
|
|
|
* ---------------------------------------------------
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "mode.h"
|
|
|
|
|
|
|
|
class InspIRCd;
|
|
|
|
|
|
|
|
/** User mode +w
|
|
|
|
*/
|
2008-05-01 19:56:16 +00:00
|
|
|
class ModeUserWallops : public SimpleUserModeHandler
|
2007-07-16 17:30:04 +00:00
|
|
|
{
|
|
|
|
public:
|
2009-09-26 14:13:13 +00:00
|
|
|
ModeUserWallops();
|
2007-07-16 17:30:04 +00:00
|
|
|
unsigned int GetCount();
|
|
|
|
};
|