]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - src/modules/m_helpop.cpp
m_callerid Route ACCEPT to the server of the target user only, do not send METADATA...
[user/henk/code/inspircd.git] / src / modules / m_helpop.cpp
index 92abcd76f9582bb589765028a153b38ba4c8874b..1733d0455d6ce56ea1fb0b436e05c511958ef039 100644 (file)
@@ -98,7 +98,6 @@ class CommandHelpop : public Command
 
 class ModuleHelpop : public Module
 {
-       private:
                std::string  h_file;
                CommandHelpop cmd;
                Helpop ho;
@@ -109,7 +108,7 @@ class ModuleHelpop : public Module
                {
                }
 
-               void init()
+               void init() CXX11_OVERRIDE
                {
                        ReadConfig();
                        ServerInstance->Modules->AddService(ho);
@@ -151,12 +150,12 @@ class ModuleHelpop : public Module
 
                }
 
-               void OnRehash(User* user)
+               void OnRehash(User* user) CXX11_OVERRIDE
                {
                        ReadConfig();
                }
 
-               void OnWhois(User* src, User* dst)
+               void OnWhois(User* src, User* dst) CXX11_OVERRIDE
                {
                        if (dst->IsModeSet('h'))
                        {
@@ -164,7 +163,7 @@ class ModuleHelpop : public Module
                        }
                }
 
-               Version GetVersion()
+               Version GetVersion() CXX11_OVERRIDE
                {
                        return Version("Provides the /HELPOP command for useful information", VF_VENDOR);
                }