]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - include/commands/cmd_clearcache.h
17e4bd0668b263ab130d17c4bcd9aba9a4523219
[user/henk/code/inspircd.git] / include / commands / cmd_clearcache.h
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 #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 /ADMIN. 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 CommandClearcache : public Command
27 {
28  public:
29         /** Constructor for clearcache.
30          */
31         CommandClearcache (InspIRCd* Instance) : Command(Instance,"CLEARCACHE",'o',0) { }
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 char** parameters, int pcnt, User *user);
39 };
40
41 #endif