]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - include/commands/cmd_who.h
I think this fixes visual studio oddities
[user/henk/code/inspircd.git] / include / commands / cmd_who.h
1 /*       +------------------------------------+
2  *       | Inspire Internet Relay Chat Daemon |
3  *       +------------------------------------+
4  *
5  *  InspIRCd is copyright (C) 2002-2007 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_WHO_H__
18 #define __CMD_WHO_H__
19
20 // include the common header files
21
22 #include "users.h"
23 #include "channels.h"
24
25 /** Handle /WHO
26  */
27 class cmd_who : public command_t
28 {
29         bool CanView(chanrec* chan, userrec* user);
30         bool opt_viewopersonly;
31         bool opt_showrealhost;
32         bool opt_unlimit;
33         bool opt_realname;
34         bool opt_mode;
35         bool opt_ident;
36         bool opt_metadata;
37         bool opt_port;
38         bool opt_away;
39         bool opt_local;
40         bool opt_far;
41  public:
42         cmd_who (InspIRCd* Instance) : command_t(Instance,"WHO",0,1) { syntax = "<server>|<nickname>|<channel>|<realname>|<host>|0 [ohurmMiaplf]"; }
43         void SendWhoLine(userrec* user, const std::string &initial, chanrec* ch, userrec* u, std::vector<std::string> &whoresults);
44         CmdResult Handle(const char** parameters, int pcnt, userrec *user);
45         bool whomatch(userrec* user, const char* matchtext);
46 };
47
48 #endif