summaryrefslogtreecommitdiffstats
path: root/src/Server/Application.h
diff options
context:
space:
mode:
authorMatthias Schiffer <matthias@gamezock.de>2009-09-23 09:44:02 +0200
committerMatthias Schiffer <matthias@gamezock.de>2009-09-23 09:44:02 +0200
commit0eddc28a331437ef95a60418ed1fc6de4e9b63c1 (patch)
tree17dcb71adbca54b47e12b32fb313597f971709f5 /src/Server/Application.h
parentd6844595c9b47dab1db4b970ff6cc7fb3f64f107 (diff)
downloadmad-0eddc28a331437ef95a60418ed1fc6de4e9b63c1.tar
mad-0eddc28a331437ef95a60418ed1fc6de4e9b63c1.zip
UserListManager: Moved module into libCommon and libServer
Diffstat (limited to 'src/Server/Application.h')
-rw-r--r--src/Server/Application.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/Server/Application.h b/src/Server/Application.h
index 205d398..5dc1e63 100644
--- a/src/Server/Application.h
+++ b/src/Server/Application.h
@@ -28,10 +28,12 @@ namespace Mad {
namespace Server {
class ConnectionManager;
+class UserListManager;
class MAD_SERVER_EXPORT Application : public Common::Application {
private:
ConnectionManager *connectionManager;
+ UserListManager *userListManager;
public:
Application();
@@ -40,6 +42,10 @@ class MAD_SERVER_EXPORT Application : public Common::Application {
ConnectionManager* getConnectionManager() const {
return connectionManager;
}
+
+ UserListManager* getUserListManager() const {
+ return userListManager;
+ }
};
}