diff options
Diffstat (limited to 'modules/commands/os_module.cpp')
-rw-r--r-- | modules/commands/os_module.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/modules/commands/os_module.cpp b/modules/commands/os_module.cpp index f8839af74..346640f50 100644 --- a/modules/commands/os_module.cpp +++ b/modules/commands/os_module.cpp @@ -11,7 +11,7 @@ #include "module.h" -class CommandOSModLoad +class CommandOSModLoad final : public Command { public: @@ -49,7 +49,7 @@ public: } }; -class CommandOSModReLoad +class CommandOSModReLoad final : public Command { public: @@ -122,7 +122,7 @@ public: } }; -class CommandOSModUnLoad +class CommandOSModUnLoad final : public Command { public: @@ -173,7 +173,7 @@ public: } }; -class OSModule +class OSModule final : public Module { CommandOSModLoad commandosmodload; |