diff options
author | Max Kellermann <max@duempel.org> | 2014-01-13 22:05:45 +0100 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2014-01-13 22:24:02 +0100 |
commit | ca43e634b5adfebdcb9c3c8f61cebf38d42827e0 (patch) | |
tree | fab541d75386417187052650dcee16eb5c48f3b4 /src/db/upnp/upnpplib.hxx | |
parent | 85324f80fe1d72a066cc49847815830080eb1bc3 (diff) | |
download | mpd-ca43e634b5adfebdcb9c3c8f61cebf38d42827e0.tar.gz mpd-ca43e634b5adfebdcb9c3c8f61cebf38d42827e0.tar.xz mpd-ca43e634b5adfebdcb9c3c8f61cebf38d42827e0.zip |
db/upnp: use std::function for the libupnp callback
Replaces the bloated std::map.
Diffstat (limited to 'src/db/upnp/upnpplib.hxx')
-rw-r--r-- | src/db/upnp/upnpplib.hxx | 21 |
1 files changed, 9 insertions, 12 deletions
diff --git a/src/db/upnp/upnpplib.hxx b/src/db/upnp/upnpplib.hxx index b6ce80212..c1443624c 100644 --- a/src/db/upnp/upnpplib.hxx +++ b/src/db/upnp/upnpplib.hxx @@ -22,24 +22,18 @@ #include "util/Error.hxx" -#include <map> - #include <upnp/upnp.h> +#include <functional> + /** Our link to libupnp. Initialize and keep the handle around */ class LibUPnP { - // A Handler object records the data from registerHandler. - class Handler { - public: - Handler(Upnp_FunPtr h, void *c) - : handler(h), cookie(c) {} - Upnp_FunPtr handler; - void *cookie; - }; + typedef std::function<void(Upnp_EventType type, void *event)> Handler; Error init_error; UpnpClient_Handle m_clh; - std::map<Upnp_EventType, Handler> m_handlers; + + Handler handler; LibUPnP(); @@ -65,7 +59,10 @@ public: return init_error; } - void registerHandler(Upnp_EventType et, Upnp_FunPtr handler, void *cookie); + template<typename T> + void SetHandler(T &&_handler) { + handler = std::forward<T>(_handler); + } UpnpClient_Handle getclh() { |