]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - include/commands/cmd_who.h
Purely a documentation fix: PRIO_AFTER doesn't exist any more, it's PRIORITY_AFTER.
[user/henk/code/inspircd.git] / include / commands / cmd_who.h
index e0f6f61c6b2b20dd5ec55db82bcdeb3a303ebd04..a6afd425fc73a3c68b2c3d6f242a700637bf1296 100644 (file)
@@ -2,8 +2,8 @@
  *       | Inspire Internet Relay Chat Daemon |
  *       +------------------------------------+
  *
- *  InspIRCd: (C) 2002-2007 InspIRCd Development Team
- * See: http://www.inspircd.org/wiki/index.php/Credits
+ *  InspIRCd: (C) 2002-2009 InspIRCd Development Team
+ * See: http://wiki.inspircd.org/Credits
  *
  * This program is free but copyrighted software; see
  *      the file COPYING for details.
@@ -24,7 +24,7 @@
  * the same way, however, they can be fully unloaded, where these
  * may not.
  */
-class cmd_who : public Command
+class CommandWho : public Command
 {
        bool CanView(Channel* chan, User* user);
        bool opt_viewopersonly;
@@ -38,10 +38,12 @@ class cmd_who : public Command
        bool opt_away;
        bool opt_local;
        bool opt_far;
+       bool opt_time;
+
  public:
        /** Constructor for who.
         */
-       cmd_who (InspIRCd* Instance) : Command(Instance,"WHO", 0, 1, false, 2) { syntax = "<server>|<nickname>|<channel>|<realname>|<host>|0 [ohurmMiaplf]"; }
+       CommandWho (InspIRCd* Instance) : Command(Instance,"WHO", 0, 1, false, 2) { syntax = "<server>|<nickname>|<channel>|<realname>|<host>|0 [ohurmMiaplf]"; }
        void SendWhoLine(User* user, const std::string &initial, Channel* ch, User* u, std::vector<std::string> &whoresults);
        /** Handle command.
         * @param parameters The parameters to the comamnd
@@ -49,7 +51,7 @@ class cmd_who : public Command
         * @param user The user issuing the command
         * @return A value from CmdResult to indicate command success or failure.
         */
-       CmdResult Handle(const char** parameters, int pcnt, User *user);
+       CmdResult Handle(const std::vector<std::string>& parameters, User *user);
        bool whomatch(User* user, const char* matchtext);
 };