]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - include/commands/cmd_time.h
Okay, this was good in theory, but totally and utterly fucked in implementation....
[user/henk/code/inspircd.git] / include / commands / cmd_time.h
index 24423c46ed3b38771b3a5a51c206777bcaa1e841..d45c23ba3de5962f6fb498ac621a59e3031872ef 100644 (file)
@@ -2,7 +2,7 @@
  *       | Inspire Internet Relay Chat Daemon |
  *       +------------------------------------+
  *
- *  InspIRCd: (C) 2002-2007 InspIRCd Development Team
+ *  InspIRCd: (C) 2002-2008 InspIRCd Development Team
  * See: http://www.inspircd.org/wiki/index.php/Credits
  *
  * This program is free but copyrighted software; see
  * the same way, however, they can be fully unloaded, where these
  * may not.
  */
-class cmd_time : public Command
+class CommandTime : public Command
 {
  public:
        /** Constructor for time.
         */
-       cmd_time (InspIRCd* Instance) : Command(Instance,"TIME",0,0) { syntax = "[<servername>]"; }
+       CommandTime (InspIRCd* Instance) : Command(Instance,"TIME",0,0) { syntax = "[<servername>]"; }
        /** Handle command.
         * @param parameters The parameters to the comamnd
         * @param pcnt The number of parameters passed to teh 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, userrec *user);
+       CmdResult Handle(const std::vector<std::string>& parameters, User *user);
 };
 
 #endif