summaryrefslogtreecommitdiff
path: root/include/modules.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/modules.h')
-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