From 415cd36477e152c12f91a10ad61bb719373cd9d1 Mon Sep 17 00:00:00 2001 From: Matthias Schiffer Date: Sun, 23 Aug 2009 20:57:00 +0200 Subject: =?UTF-8?q?Authentifikation=20hinzugef=C3=BCgt.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/Common/Application.cpp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'src/Common/Application.cpp') diff --git a/src/Common/Application.cpp b/src/Common/Application.cpp index 38ef4b5..196e57a 100644 --- a/src/Common/Application.cpp +++ b/src/Common/Application.cpp @@ -18,6 +18,7 @@ */ #include "Application.h" +#include "AuthManager.h" #include "ModuleManager.h" #include "RequestManager.h" #include "SystemManager.h" @@ -26,7 +27,7 @@ namespace Mad { namespace Common { -Application::Application(bool server) : moduleManager(new ModuleManager(this)), requestManager(new RequestManager(this, server)), +Application::Application(bool server) : authManager(new AuthManager), moduleManager(new ModuleManager(this)), requestManager(new RequestManager(this, server)), systemManager(new SystemManager), userManager(new UserManager(this)) {} Application::~Application() { @@ -34,6 +35,7 @@ Application::~Application() { delete systemManager; delete requestManager; delete moduleManager; + delete authManager; } } -- cgit v1.2.3