]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - src/commands/cmd_info.cpp
More WriteGlobalSno conversions in rehash, patch by dKingston
[user/henk/code/inspircd.git] / src / commands / cmd_info.cpp
index 286e64f6140ad21d734413b613e37e261f230c35..f239b9f78aae722c6b1489e2607ec23de2929eaa 100644 (file)
  */
 
 #include "inspircd.h"
-#include "commands/cmd_info.h"
 
-extern "C" DllExport Command* init_command(InspIRCd* Instance)
+#ifndef __CMD_INFO_H__
+#define __CMD_INFO_H__
+
+// include the common header files
+
+#include "users.h"
+#include "channels.h"
+
+/** Handle /INFO. These command handlers can be reloaded by the core,
+ * and handle basic RFC1459 commands. Commands within modules work
+ * the same way, however, they can be fully unloaded, where these
+ * may not.
+ */
+class CommandInfo : public Command
 {
-       return new CommandInfo(Instance);
-}
+ public:
+       /** Constructor for info.
+        */
+       CommandInfo ( Module* parent) : Command(parent,"INFO",0,0) { syntax = "[<servermask>]"; }
+       /** 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 std::vector<std::string>& parameters, User *user);
+};
+
+#endif
+
 
 /** Handle /INFO
  */
@@ -62,3 +87,5 @@ CmdResult CommandInfo::Handle (const std::vector<std::string>&, User *user)
        user->WriteNumeric(RPL_ENDOFINFO, "%s :End of /INFO list", user->nick.c_str());
        return CMD_SUCCESS;
 }
+
+COMMAND_INIT(CommandInfo)