]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - src/modules/m_sethost.cpp
Pedantic clean
[user/henk/code/inspircd.git] / src / modules / m_sethost.cpp
index 7ea03ebbca1bd0ac12487f9ec31470869a32917f..87b88666102b36fcf4666b78880edcb1472dcab9 100644 (file)
 
 /** Handle /SETHOST
  */
-class cmd_sethost : public Command
+class CommandSethost : public Command
 {
  private:
        char* hostmap;
  public:
-       cmd_sethost (InspIRCd* Instance, char* hmap) : Command(Instance,"SETHOST",'o',1), hostmap(hmap)
+       CommandSethost (InspIRCd* Instance, char* hmap) : Command(Instance,"SETHOST",'o',1), hostmap(hmap)
        {
                this->source = "m_sethost.so";
                syntax = "<new-hostname>";
@@ -63,14 +63,14 @@ class cmd_sethost : public Command
 
 class ModuleSetHost : public Module
 {
-       cmd_sethost* mycommand;
+       CommandSethost* mycommand;
        char hostmap[256];
  public:
        ModuleSetHost(InspIRCd* Me)
                : Module(Me)
        {       
                OnRehash(NULL,"");
-               mycommand = new cmd_sethost(ServerInstance, hostmap);
+               mycommand = new CommandSethost(ServerInstance, hostmap);
                ServerInstance->AddCommand(mycommand);
        }