summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorbrain <brain@e03df62e-2008-0410-955e-edbf42e46eb7>2006-08-10 15:02:11 +0000
committerbrain <brain@e03df62e-2008-0410-955e-edbf42e46eb7>2006-08-10 15:02:11 +0000
commit5ad92066273a998cf85b5d13e0b3a335a7cd4d57 (patch)
tree641961522a231b09eb306e6418b780566ce5bec9 /include
parent396c9ef9f7a96934d3227bb7d1d091315e3d4fa8 (diff)
Server::GetConfig, Server::GetVersion -> removed
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@4833 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'include')
-rw-r--r--include/modules.h10
1 files changed, 0 insertions, 10 deletions
diff --git a/include/modules.h b/include/modules.h
index fca1bc128..49695b63c 100644
--- a/include/modules.h
+++ b/include/modules.h
@@ -1272,12 +1272,6 @@ class Server : public Extensible
*/
virtual ~Server();
- /** Obtains a pointer to the server's ServerConfig object.
- * The ServerConfig object contains most of the configuration data
- * of the IRC server, as read from the config file by the core.
- */
- ServerConfig* GetConfig();
-
/** For use with Module::Prioritize().
* When the return value of this function is returned from
* Module::Prioritize(), this specifies that the module wishes
@@ -1298,10 +1292,6 @@ class Server : public Extensible
*/
long PriorityAfter(const std::string &modulename);
- /** Returns the version string of this server
- */
- std::string GetVersion();
-
/** Publish a 'feature'.
* There are two ways for a module to find another module it depends on.
* Either by name, using Server::FindModule, or by feature, using this