diff options
author | David Robillard <d@drobilla.net> | 2007-07-24 21:23:22 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2007-07-24 21:23:22 +0000 |
commit | bac31a50f17608c514afce5ad014316cccde3d5a (patch) | |
tree | de4ec623cc5099e3de4b9b5a1883b51694fe6bf9 /src/libs/engine/events/UnregisterClientEvent.hpp | |
parent | bb1c49dfa484db080938cff6f8f70167c9026a1c (diff) | |
download | ingen-bac31a50f17608c514afce5ad014316cccde3d5a.tar.gz ingen-bac31a50f17608c514afce5ad014316cccde3d5a.tar.bz2 ingen-bac31a50f17608c514afce5ad014316cccde3d5a.zip |
Scrapped ClientKey in favour of a URI string (towards a simpler closer-to-straight-C engine interface).
Fixed client deregistration.
Added metadata value requesting.
git-svn-id: http://svn.drobilla.net/lad/ingen@614 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src/libs/engine/events/UnregisterClientEvent.hpp')
-rw-r--r-- | src/libs/engine/events/UnregisterClientEvent.hpp | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/src/libs/engine/events/UnregisterClientEvent.hpp b/src/libs/engine/events/UnregisterClientEvent.hpp index 17d85b93..500c1250 100644 --- a/src/libs/engine/events/UnregisterClientEvent.hpp +++ b/src/libs/engine/events/UnregisterClientEvent.hpp @@ -19,7 +19,6 @@ #define UNREGISTERCLIENTEVENT_H #include "QueuedEvent.hpp" -#include "interface/ClientKey.hpp" #include <string> using std::string; @@ -27,10 +26,8 @@ namespace Ingen { namespace Shared { class ClientInterface; - class ClientKey; } using Shared::ClientInterface; -using Shared::ClientKey; /** Unregisters an OSC client so it no longer receives notifications. @@ -43,12 +40,12 @@ public: UnregisterClientEvent(Engine& engine, SharedPtr<Shared::Responder> responder, SampleCount timestamp, - ClientKey key); + const string& uri); void post_process(); private: - ClientKey _key; + string _uri; }; |