diff options
author | Matthias Schiffer <matthias@gamezock.de> | 2008-11-20 16:38:51 +0100 |
---|---|---|
committer | Matthias Schiffer <matthias@gamezock.de> | 2008-11-20 16:38:51 +0100 |
commit | d002476c5e6b8f6bc728063fc8e7ce74da562e57 (patch) | |
tree | 0df9fb41ec09a96b6498a691d36164a6b4a6a7ca /src/Core | |
parent | 0a1df98c0420e9ac097622f2bddcd73a6488ed52 (diff) | |
download | mad-d002476c5e6b8f6bc728063fc8e7ce74da562e57.tar mad-d002476c5e6b8f6bc728063fc8e7ce74da562e57.zip |
SingletonPtr ueberarbeitet
Diffstat (limited to 'src/Core')
-rw-r--r-- | src/Core/ConnectionManager.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/Core/ConnectionManager.h b/src/Core/ConnectionManager.h index 86c342c..fdc8a46 100644 --- a/src/Core/ConnectionManager.h +++ b/src/Core/ConnectionManager.h @@ -27,6 +27,7 @@ #include <Common/Configurable.h> #include <Common/Exception.h> #include <Common/HostInfo.h> +#include <Common/Initializable.h> #include <Common/RequestManager.h> #include <Common/SingletonPtr.h> @@ -43,7 +44,7 @@ class Packet; namespace Core { -class ConnectionManager : public Common::Configurable { +class ConnectionManager : public Common::Configurable, public Common::Initializable { private: static Common::SingletonPtr<ConnectionManager> connectionManager; |