]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - include/commands/cmd_rehash.h
Space indents must die.
[user/henk/code/inspircd.git] / include / commands / cmd_rehash.h
index cb2d2e6663a5a0a1f5795c921a35bc685a07d7f6..9f85fe26b68f1b397191098f59120f1d72d1a55d 100644 (file)
@@ -2,14 +2,14 @@
  *       | Inspire Internet Relay Chat Daemon |
  *       +------------------------------------+
  *
- *  InspIRCd is copyright (C) 2002-2006 ChatSpike-Dev.
- *                       E-mail:
- *                <brain@chatspike.net>
- *                <Craig@chatspike.net>
+ *  InspIRCd is copyright (C) 2002-2007 ChatSpike-Dev.
+ *                    E-mail:
+ *             <brain@chatspike.net>
+ *             <Craig@chatspike.net>
  *
  * Written by Craig Edwards, Craig McLure, and others.
  * This program is free but copyrighted software; see
- *            the file COPYING for details.
+ *         the file COPYING for details.
  *
  * ---------------------------------------------------
  */
 
 // include the common header files
 
-#include <typeinfo>
-#include <iostream>
-#include <string>
-#include <deque>
-#include <sstream>
-#include <vector>
 #include "users.h"
 #include "channels.h"
 
+/** Handle /REHASH
+ */
 class cmd_rehash : public command_t
 {
  public:
-        cmd_rehash (InspIRCd* Instance) : command_t(Instance,"REHASH",'o',0) { syntax = "[<servermask>]"; }
-        void Handle(const char** parameters, int pcnt, userrec *user);
+       cmd_rehash (InspIRCd* Instance) : command_t(Instance,"REHASH",'o',0) { syntax = "[<servermask>]"; }
+       CmdResult Handle(const char** parameters, int pcnt, userrec *user);
 };
 
 #endif