diff options
Diffstat (limited to 'src/Common/Application.h')
-rw-r--r-- | src/Common/Application.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/Common/Application.h b/src/Common/Application.h index 6de3b07..39cf2de 100644 --- a/src/Common/Application.h +++ b/src/Common/Application.h @@ -27,6 +27,7 @@ namespace Mad { namespace Common { +class AuthManager; class ModuleManager; class RequestManager; class SystemManager; @@ -34,6 +35,7 @@ class UserManager; class MAD_COMMON_EXPORT Application : public Core::Application { private: + AuthManager *authManager; ModuleManager *moduleManager; RequestManager *requestManager; SystemManager *systemManager; @@ -44,6 +46,10 @@ class MAD_COMMON_EXPORT Application : public Core::Application { virtual ~Application(); public: + AuthManager* getAuthManager() const { + return authManager; + } + ModuleManager* getModuleManager() const { return moduleManager; } |