summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorbrain <brain@e03df62e-2008-0410-955e-edbf42e46eb7>2006-08-10 15:45:08 +0000
committerbrain <brain@e03df62e-2008-0410-955e-edbf42e46eb7>2006-08-10 15:45:08 +0000
commitaa31aa5969e27674c1f5c7559a8b7c5fcd5dd18c (patch)
tree997ad20aaeb521a89e5121660fae59d6c2ad09e5
parentdafc021be4f3ad34ca37953de6a0109a161dd165 (diff)
Remove Server::Server() and Server::~Server()
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@4838 e03df62e-2008-0410-955e-edbf42e46eb7
-rw-r--r--include/modules.h10
-rw-r--r--src/modules.cpp8
2 files changed, 0 insertions, 18 deletions
diff --git a/include/modules.h b/include/modules.h
index 0fdde6016..7caf2d936 100644
--- a/include/modules.h
+++ b/include/modules.h
@@ -1262,16 +1262,6 @@ class Module : public Extensible
class Server : public Extensible
{
public:
- /** Default constructor.
- * Creates a Server object.
- */
- Server();
-
- /** Default destructor.
- * Destroys a Server object.
- */
- virtual ~Server();
-
/** For use with Module::Prioritize().
* When the return value of this function is returned from
* Module::Prioritize(), this specifies that the module wishes
diff --git a/src/modules.cpp b/src/modules.cpp
index d5ddc3bb0..824da10f3 100644
--- a/src/modules.cpp
+++ b/src/modules.cpp
@@ -233,14 +233,6 @@ void Module::OnCancelAway(userrec* user) { };
* exports in the core
*/
-Server::Server()
-{
-}
-
-Server::~Server()
-{
-}
-
void Server::AddSocket(InspSocket* sock)
{
ServerInstance->module_sockets.push_back(sock);