aboutsummaryrefslogtreecommitdiff
path: root/src/modules/m_globalload.cpp
diff options
context:
space:
mode:
authorGravatar Sadie Powell2020-04-09 18:57:50 +0100
committerGravatar Sadie Powell2020-04-11 13:54:05 +0100
commit1a800f7b3db23cdef7e167cd25c0f3b2a64a8e46 (patch)
treef302e819c6707d578c2011544069a21640fab735 /src/modules/m_globalload.cpp
parentDefault <sslprofile:hash> to sha256 for GnuTLS and OpenSSL. (diff)
Improve storage of module description, flags, and link data.
Diffstat (limited to 'src/modules/m_globalload.cpp')
-rw-r--r--src/modules/m_globalload.cpp11
1 files changed, 5 insertions, 6 deletions
diff --git a/src/modules/m_globalload.cpp b/src/modules/m_globalload.cpp
index 0bb1c8973..1bc5a8969 100644
--- a/src/modules/m_globalload.cpp
+++ b/src/modules/m_globalload.cpp
@@ -159,20 +159,19 @@ class CommandGreloadmodule : public Command
class ModuleGlobalLoad : public Module
{
+ private:
CommandGloadmodule cmd1;
CommandGunloadmodule cmd2;
CommandGreloadmodule cmd3;
public:
ModuleGlobalLoad()
- : cmd1(this), cmd2(this), cmd3(this)
+ : Module(VF_VENDOR | VF_COMMON, "Allows global loading of a module")
+ , cmd1(this)
+ , cmd2(this)
+ , cmd3(this)
{
}
-
- Version GetVersion() override
- {
- return Version("Allows global loading of a module", VF_COMMON | VF_VENDOR);
- }
};
MODULE_INIT(ModuleGlobalLoad)