diff options
author | brain <brain@e03df62e-2008-0410-955e-edbf42e46eb7> | 2005-12-14 18:36:06 +0000 |
---|---|---|
committer | brain <brain@e03df62e-2008-0410-955e-edbf42e46eb7> | 2005-12-14 18:36:06 +0000 |
commit | 26c64a80a066ee3c19672df5e162c1959522f591 (patch) | |
tree | 968d3e9bb413deb4279e55d6df5f4409a1cd5bf2 /include | |
parent | a50273328b4e736278dfde8db29220dc4bbbfe70 (diff) |
Made LoadModule and UnloadModule public
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@2444 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'include')
-rw-r--r-- | include/inspircd.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/include/inspircd.h b/include/inspircd.h index dd994f0fc..d2a93bdef 100644 --- a/include/inspircd.h +++ b/include/inspircd.h @@ -98,13 +98,13 @@ class InspIRCd private: void erase_factory(int j); void erase_module(int j); - bool UnloadModule(const char* filename); - bool LoadModule(const char* filename); public: time_t startup_time; std::vector<InspSocket*> module_sockets; - + + bool LoadModule(const char* filename); + bool UnloadModule(const char* filename); InspIRCd(int argc, char** argv); int Run(); |