]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - src/modules/m_spanningtree/servercommand.h
Add the override keyword in places that it is missing.
[user/henk/code/inspircd.git] / src / modules / m_spanningtree / servercommand.h
index f99942079c0ab226b38a8f343fa4f4c3488256c2..84488bd68ea83ee34ae67788352c1e556167f56d 100644 (file)
@@ -38,8 +38,21 @@ class ServerCommand : public CommandBase
  public:
        ServerCommand(Module* Creator, const std::string& Name, unsigned int MinPara = 0, unsigned int MaxPara = 0);
 
+       /** Register this object in the ServerCommandManager
+        */
+       void RegisterService() CXX11_OVERRIDE;
+
        virtual CmdResult Handle(User* user, std::vector<std::string>& parameters) = 0;
-       virtual RouteDescriptor GetRouting(User* user, const std::vector<std::string>& parameters);
+       RouteDescriptor GetRouting(User* user, const std::vector<std::string>& parameters) CXX11_OVERRIDE;
+
+       /**
+        * Extract the TS from a string.
+        * @param tsstr The string containing the TS.
+        * @return The raw timestamp value.
+        * This function throws a ProtocolException if it considers the TS invalid. Note that the detection of
+        * invalid timestamps is not designed to be bulletproof, only some cases - like "0" - trigger an exception.
+        */
+       static time_t ExtractTS(const std::string& tsstr);
 };
 
 /** Base class for server-to-server command handlers which are only valid if their source is a user.
@@ -52,7 +65,7 @@ class UserOnlyServerCommand : public ServerCommand
        UserOnlyServerCommand(Module* Creator, const std::string& Name, unsigned int MinPara = 0, unsigned int MaxPara = 0)
                : ServerCommand(Creator, Name, MinPara, MaxPara) { }
 
-       CmdResult Handle(User* user, std::vector<std::string>& parameters)
+       CmdResult Handle(User* user, std::vector<std::string>& parameters) CXX11_OVERRIDE
        {
                RemoteUser* remoteuser = IS_REMOTE(user);
                if (!remoteuser)
@@ -71,7 +84,7 @@ class ServerOnlyServerCommand : public ServerCommand
        ServerOnlyServerCommand(Module* Creator, const std::string& Name, unsigned int MinPara = 0, unsigned int MaxPara = 0)
                : ServerCommand(Creator, Name, MinPara, MaxPara) { }
 
-       CmdResult Handle(User* user, std::vector<std::string>& parameters)
+       CmdResult Handle(User* user, std::vector<std::string>& parameters) CXX11_OVERRIDE
        {
                if (!IS_SERVER(user))
                        throw ProtocolException("Invalid source");