]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/cmd_motd.cpp
38117be6b0feb6ca8a52e3ae3f0d63ef76f7f83e
[user/henk/code/inspircd.git] / src / cmd_motd.cpp
1 /*       +------------------------------------+
2  *       | Inspire Internet Relay Chat Daemon |
3  *       +------------------------------------+
4  *
5  *  InspIRCd: (C) 2002-2007 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_motd.h"
16
17 extern "C" DllExport command_t* init_command(InspIRCd* Instance)
18 {
19         return new cmd_motd(Instance);
20 }
21
22 /** Handle /MOTD
23  */
24 CmdResult cmd_motd::Handle (const char** parameters, int pcnt, userrec *user)
25 {
26         user->ShowMOTD();
27         return CMD_SUCCESS;
28 }