]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - include/commands/cmd_admin.h
Remove a ton of <typeinfo>, <iostream>, <sstream> etc that we usually never use
[user/henk/code/inspircd.git] / include / commands / cmd_admin.h
1 /*       +------------------------------------+
2  *       | Inspire Internet Relay Chat Daemon |
3  *       +------------------------------------+
4  *
5  *  InspIRCd is copyright (C) 2002-2006 ChatSpike-Dev.
6  *                       E-mail:
7  *                <brain@chatspike.net>
8  *                <Craig@chatspike.net>
9  *
10  * Written by Craig Edwards, Craig McLure, and others.
11  * This program is free but copyrighted software; see
12  *            the file COPYING for details.
13  *
14  * ---------------------------------------------------
15  */
16
17 #ifndef __CMD_ADMIN_H__
18 #define __CMD_ADMIN_H__
19
20 #include "users.h"
21 #include "channels.h"
22 #include "ctables.h"
23
24 class cmd_admin : public command_t
25 {
26  public:
27         cmd_admin (InspIRCd* Instance) : command_t(Instance,"ADMIN",0,0) { syntax = "[<servername>]"; }
28         void Handle(const char** parameters, int pcnt, userrec *user);
29 };
30
31 #endif