]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - src/modules/m_cycle.cpp
m_spanningtree Remove unneeded #includes
[user/henk/code/inspircd.git] / src / modules / m_cycle.cpp
index 4aa8e9c204eecec985a87b7690c724a9f9960723..b23bf5b92764a0e0654c6142ce3c602564505384 100644 (file)
@@ -84,6 +84,7 @@ class CommandCycle : public Command
 class ModuleCycle : public Module
 {
        CommandCycle cmd;
+
  public:
        ModuleCycle()
                : cmd(this)
@@ -95,15 +96,10 @@ class ModuleCycle : public Module
                ServerInstance->Modules->AddService(cmd);
        }
 
-       virtual ~ModuleCycle()
-       {
-       }
-
        virtual Version GetVersion()
        {
                return Version("Provides command CYCLE, acts as a server-side HOP command to part and rejoin a channel.", VF_VENDOR);
        }
-
 };
 
 MODULE_INIT(ModuleCycle)