]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - src/modules/m_vhost.cpp
m_spanningtree Remove unneeded #includes
[user/henk/code/inspircd.git] / src / modules / m_vhost.cpp
index 31c504af8df7084a4ec713af73d631991eeb6dbd..623c2662d22296770c538152aaa1b4c70e10e652 100644 (file)
@@ -63,7 +63,6 @@ class CommandVhost : public Command
 
 class ModuleVHost : public Module
 {
- private:
        CommandVhost cmd;
 
  public:
@@ -76,17 +75,10 @@ class ModuleVHost : public Module
                ServerInstance->Modules->AddService(cmd);
        }
 
-       virtual ~ModuleVHost()
-       {
-       }
-
-
        virtual Version GetVersion()
        {
                return Version("Provides masking of user hostnames via traditional /VHOST command",VF_VENDOR);
        }
-
 };
 
 MODULE_INIT(ModuleVHost)
-