]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - include/commands/cmd_mode.h
3c6eda5f5841382585ec2d5bc5c64a4766165753
[user/henk/code/inspircd.git] / include / commands / cmd_mode.h
1 /*       +------------------------------------+
2  *       | Inspire Internet Relay Chat Daemon |
3  *       +------------------------------------+
4  *
5  *  InspIRCd: (C) 2002-2009 InspIRCd Development Team
6  * See: http://wiki.inspircd.org/Credits
7  *
8  * This program is free but copyrighted software; see
9  *      the file COPYING for details.
10  *
11  * ---------------------------------------------------
12  */
13
14 #ifndef __CMD_ADMIN_H__
15 #define __CMD_ADMIN_H__
16
17 #include "users.h"
18 #include "channels.h"
19 #include "ctables.h"
20
21 /** Handle /MODE. These command handlers can be reloaded by the core,
22  * and handle basic RFC1459 commands. Commands within modules work
23  * the same way, however, they can be fully unloaded, where these
24  * may not.
25  */
26 class CommandMode : public Command
27 {
28  public:
29         /** Constructor for mode.
30          */
31         CommandMode (InspIRCd* Instance) : Command(Instance,"MODE",0,1) { syntax = "<target> <modes> {<mode-parameters>}"; }
32         /** Handle command.
33          * @param parameters The parameters to the comamnd
34          * @param pcnt The number of parameters passed to teh command
35          * @param user The user issuing the command
36          * @return A value from CmdResult to indicate command success or failure.
37          */
38         CmdResult Handle(const std::vector<std::string>& parameters, User *user);
39 };
40
41 #endif