]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/commands/cmd_mode.cpp
Clean up Command constructor
[user/henk/code/inspircd.git] / src / commands / cmd_mode.cpp
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 #include "inspircd.h"
15
16 #ifndef __CMD_ADMIN_H__
17 #define __CMD_ADMIN_H__
18
19 #include "users.h"
20 #include "channels.h"
21 #include "ctables.h"
22
23 /** Handle /MODE. These command handlers can be reloaded by the core,
24  * and handle basic RFC1459 commands. Commands within modules work
25  * the same way, however, they can be fully unloaded, where these
26  * may not.
27  */
28 class CommandMode : public Command
29 {
30  public:
31         /** Constructor for mode.
32          */
33         CommandMode ( Module* parent) : Command(parent,"MODE",0,1) { syntax = "<target> <modes> {<mode-parameters>}"; }
34         /** Handle command.
35          * @param parameters The parameters to the comamnd
36          * @param pcnt The number of parameters passed to teh command
37          * @param user The user issuing the command
38          * @return A value from CmdResult to indicate command success or failure.
39          */
40         CmdResult Handle(const std::vector<std::string>& parameters, User *user);
41 };
42
43 #endif
44
45
46 /** Handle /MODE
47  */
48 CmdResult CommandMode::Handle (const std::vector<std::string>& parameters, User *user)
49 {
50         ServerInstance->Modes->Process(parameters, user, false);
51         return CMD_SUCCESS;
52 }
53
54
55 COMMAND_INIT(CommandMode)