]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - include/commands/cmd_stats.h
Bad w00tie bad, /who isnt checking +s for channel /who!
[user/henk/code/inspircd.git] / include / commands / cmd_stats.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_STATS_H__
18 #define __CMD_STATS_H__
19
20 // include the common header files
21
22 #include "inspircd.h"
23 #include "users.h"
24 #include "channels.h"
25
26 void DoStats(InspIRCd* Instance, char statschar, userrec* user, string_list &results);
27
28 /** Handle /STATS
29  */
30 class cmd_stats : public command_t
31 {
32  public:
33         cmd_stats (InspIRCd* Instance) : command_t(Instance,"STATS",0,1) { syntax = "[<servername>] <stats-symbol>"; }
34         CmdResult Handle(const char** parameters, int pcnt, userrec *user);
35 };
36
37 #endif