]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/commands/cmd_mode.cpp
80439f4d8a71bb417d0c86bc90448ca22a096e70
[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://www.inspircd.org/wiki/index.php/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 #include "commands/cmd_mode.h"
16
17 extern "C" DllExport Command* init_command(InspIRCd* Instance)
18 {
19         return new CommandMode(Instance);
20 }
21
22 /** Handle /MODE
23  */
24 CmdResult CommandMode::Handle (const std::vector<std::string>& parameters, User *user)
25 {
26         ServerInstance->Modes->Process(parameters, user, false);
27         return CMD_SUCCESS;
28 }
29