]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - include/inspircd.h
Did some renaming so that the methods for modes in chanrec and userrec are identical.
[user/henk/code/inspircd.git] / include / inspircd.h
index 9a0561f930461f01eac51e29054ffefe2b28f1d7..11fdb3a54b31cf356d00990558208d88ca41a8fe 100644 (file)
@@ -83,14 +83,18 @@ class InspIRCd
        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;
@@ -101,13 +105,10 @@ class InspIRCd
 
        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();
@@ -116,7 +117,6 @@ class InspIRCd
 
 /* Miscellaneous stuff here, moved from inspircd_io.h */
 void Exit(int status);
-void WritePID(const std::string &filename);
 
 /* userrec optimization stuff */
 void AddServerName(const std::string &servername);