]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - include/modules.h
UMode tweaks
[user/henk/code/inspircd.git] / include / modules.h
index ffa95162648b11d24675eedc5fcb7a66f994bb35..7bc4d3d4c3d534fd2c7dc72b240db4d5e3fb5532 100644 (file)
@@ -72,6 +72,7 @@ enum TargetTypeFlags {
 #include <deque>
 #include <sstream>
 #include <typeinfo>
+#include "timer.h"
 
 class Server;
 class ServerConfig;
@@ -350,7 +351,7 @@ class Module : public classbase
        /** Default constructor
         * Creates a module class.
         * @param Me An instance of the Server class which can be saved for future use
-        * \exception ModuleException { Throwing this class, or any class derived from ModuleException, causes loading of the module to abort. }
+        * \exception ModuleException Throwing this class, or any class derived from ModuleException, causes loading of the module to abort.
         */
        Module(Server* Me);
 
@@ -1390,6 +1391,10 @@ class Server : public classbase
         */
        virtual int CountUsers(chanrec* c);
 
+       /** Adds an InspTimer which will trigger at a future time
+        */
+       virtual void AddTimer(InspTimer* T);
+
        /** Attempts to look up a nick and return a pointer to it.
         * This function will return NULL if the nick does not exist.
         */
@@ -1411,11 +1416,6 @@ class Server : public classbase
         */
        virtual std::string ChanMode(userrec* User, chanrec* Chan);
 
-       /** Checks if a user is on a channel.
-        * This function will return true or false to indicate if user 'User' is on channel 'Chan'.
-        */
-       virtual bool IsOnChannel(userrec* User, chanrec* Chan);
-
        /** Returns the server name of the server where the module is loaded.
         */
        virtual std::string GetServerName();
@@ -1592,8 +1592,9 @@ class Server : public classbase
         * in the array. If you do not pass enough parameters to meet the minimum needed by the handler, the
         * functiom will silently ignore it. The final parameter is the user executing the command handler,
         * used for privilage checks, etc.
+        * @return True if the command exists
         */
-       virtual void CallCommandHandler(std::string commandname, char** parameters, int pcnt, userrec* user);
+       virtual bool CallCommandHandler(std::string commandname, char** parameters, int pcnt, userrec* user);
 
        /** This function returns true if the commandname exists, pcnt is equal to or greater than the number
         * of paramters the command requires, the user specified is allowed to execute the command, AND
@@ -1739,6 +1740,12 @@ class Server : public classbase
        virtual void DelSocket(InspSocket* sock);
 
        virtual void RehashServer();
+
+       virtual long GetChannelCount();
+
+       virtual chanrec* GetChannelIndex(long index);
+
+       void DumpText(userrec* User, std::string LinePrefix, stringstream &TextStream);
 };