]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - src/modules/m_check.cpp
This works, not sure why. Someone find out why we cant use && !isock->HasResult(...
[user/henk/code/inspircd.git] / src / modules / m_check.cpp
index 643af8e15d0d955713d2444acda716fe1944e554..b505f10eec0a10964aca1b1f4e35c7352320951b 100644 (file)
  */
 
 #include "inspircd.h"
-#include "users.h"
-#include "channels.h"
-#include "modules.h"
 #include "wildcard.h"
 
 /* $ModDesc: Provides the /check command to retrieve information on a user, channel, or IP address */
 
 /** Handle /CHECK
  */
-class cmd_check : public command_t
+class CommandCheck : public Command
 {
  public:
-       cmd_check (InspIRCd* Instance) : command_t(Instance,"CHECK", 'o', 1)
+       CommandCheck (InspIRCd* Instance) : Command(Instance,"CHECK", 'o', 1)
        {
                this->source = "m_check.so";
                syntax = "<nickname>|<ip>|<hostmask>|<channel>";
        }
 
-       CmdResult Handle (const char** parameters, int pcnt, userrec *user)
+       CmdResult Handle (const char** parameters, int pcnt, User *user)
        {
-               userrec *targuser;
-               chanrec *targchan;
+               User *targuser;
+               Channel *targchan;
                std::string checkstr;
                std::string chliststr;
 
@@ -160,12 +157,12 @@ class cmd_check : public command_t
 class ModuleCheck : public Module
 {
  private:
-       cmd_check *mycommand;
+       CommandCheck *mycommand;
  public:
        ModuleCheck(InspIRCd* Me) : Module(Me)
        {
                
-               mycommand = new cmd_check(ServerInstance);
+               mycommand = new CommandCheck(ServerInstance);
                ServerInstance->AddCommand(mycommand);
        }