diff options
author | Gluzskiy Alexandr <sss@sss.chaoslab.ru> | 2015-11-20 10:41:35 +0300 |
---|---|---|
committer | Gluzskiy Alexandr <sss@sss.chaoslab.ru> | 2015-11-20 10:41:35 +0300 |
commit | 23c6b9cb5ec8186584c05fe0db0d0dcdc1c56d28 (patch) | |
tree | e9fa4f037b351b63172169f16c3fd3024e7b0017 /server/src/client.cpp | |
parent | 3d2c1d3c24e40573e391040048ff734cd052c295 (diff) |
server:
a bit of work with event system
Diffstat (limited to 'server/src/client.cpp')
-rw-r--r-- | server/src/client.cpp | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/server/src/client.cpp b/server/src/client.cpp index 0990317..fdfd513 100644 --- a/server/src/client.cpp +++ b/server/src/client.cpp @@ -29,7 +29,10 @@ client::client(std::string &client_auth_token, server_session *sess) : auth_toke void client::add_event_subscription(event_subscription_base* e) { } - +const std::list<event_subscription_base*>& client::get_subscriptions() +{ + return subscriptions; +} client::~client() { //dtor |