summaryrefslogtreecommitdiff
path: root/include/inspircd.h
diff options
context:
space:
mode:
authorbrain <brain@e03df62e-2008-0410-955e-edbf42e46eb7>2006-07-01 15:07:09 +0000
committerbrain <brain@e03df62e-2008-0410-955e-edbf42e46eb7>2006-07-01 15:07:09 +0000
commitdc42f264d7a139c3f86e430f6402b4dde8aee93e (patch)
tree9b90be82ad9ccad5e89c77fe34621c5c0fab5056 /include/inspircd.h
parent75eb9178d5051046aa86d1115ad02c5be17b79be (diff)
relocate the Move* methods to private: where they belong, rename erase_factory and erase_module to be more appropriate EraseFactory and EraseModule methods
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@4098 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'include/inspircd.h')
-rw-r--r--include/inspircd.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/include/inspircd.h b/include/inspircd.h
index af1d5cd90..11fdb3a54 100644
--- a/include/inspircd.h
+++ b/include/inspircd.h
@@ -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;
@@ -105,10 +109,6 @@ class InspIRCd
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();