|
|||
|
|||
|
00001 /* +------------------------------------+ 00002 * | Inspire Internet Relay Chat Daemon | 00003 * +------------------------------------+ 00004 * 00005 * InspIRCd: (C) 2002-2008 InspIRCd Development Team 00006 * See: http://www.inspircd.org/wiki/index.php/Credits 00007 * 00008 * This program is free but copyrighted software; see 00009 * the file COPYING for details. 00010 * 00011 * --------------------------------------------------- 00012 */ 00013 00014 #ifndef __CMD_STATS_H__ 00015 #define __CMD_STATS_H__ 00016 00017 // include the common header files 00018 00019 #include "inspircd.h" 00020 #include "users.h" 00021 #include "channels.h" 00022 00023 DllExport void DoStats(InspIRCd* Instance, char statschar, User* user, string_list &results); 00024 00030 class CommandStats : public Command 00031 { 00032 public: 00035 CommandStats (InspIRCd* Instance) : Command(Instance,"STATS",0,1) { syntax = "<stats-symbol> [<servername>]"; } 00042 CmdResult Handle(const std::vector<std::string>& parameters, User *user); 00043 }; 00044 00045 #endif