]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - include/inspircd.h
irc::tokenstream is a token parser which using std::string and std::vector builds...
[user/henk/code/inspircd.git] / include / inspircd.h
index 8be2874dc5ebf80c2dd1d988d6260a902cd334f5..109e1f2be51f226297aae38e495098d95163a41d 100644 (file)
@@ -25,6 +25,7 @@
 #include "channels.h"
 #include "socket.h"
 #include "mode.h"
+#include "helperfuncs.h"
 #include "socketengine.h"
 #include "command_parse.h"
 
@@ -51,7 +52,7 @@ template<typename T> inline std::string ConvToStr(const T &in)
        return tmp.str();
 }
 
-class serverstats
+class serverstats : public classbase
 {
   public:
        int statsAccept;
@@ -76,16 +77,24 @@ class serverstats
 };
 
 
-class InspIRCd
+class InspIRCd : public classbase
 {
  private:
        char MODERR[MAXBUF];
        bool expire_run;
  
-       void erase_factory(int j);
-       void erase_module(int j);
+       void EraseFactory(int j);
+       void EraseModule(int j);
        void BuildISupport();
        void MoveTo(std::string modulename,int slot);
+       void Start();
+       void SetSignals();
+       bool DaemonSeed();
+       void MakeLowerMap();
+       void MoveToLast(std::string modulename);
+       void MoveToFirst(std::string modulename);
+       void MoveAfter(std::string modulename, std::string after);
+       void MoveBefore(std::string modulename, std::string before);
 
  public:
        time_t startup_time;
@@ -94,16 +103,12 @@ class InspIRCd
        SocketEngine* SE;
        serverstats* stats;
 
-       void MakeLowerMap();
        std::string GetRevision();
        std::string GetVersionString();
+       void WritePID(const std::string &filename);
        char* ModuleError();
        bool LoadModule(const char* filename);
        bool UnloadModule(const char* filename);
-       void MoveToLast(std::string modulename);
-       void MoveToFirst(std::string modulename);
-       void MoveAfter(std::string modulename, std::string after);
-       void MoveBefore(std::string modulename, std::string before);
        InspIRCd(int argc, char** argv);
        void DoOneIteration(bool process_module_sockets);
        int Run();
@@ -111,11 +116,7 @@ class InspIRCd
 };
 
 /* Miscellaneous stuff here, moved from inspircd_io.h */
-void Exit(int status); 
-void Start(); 
-void SetSignals();
-bool DaemonSeed();
-void WritePID(const std::string &filename);
+void Exit(int status);
 
 /* userrec optimization stuff */
 void AddServerName(const std::string &servername);