diff options
author | David Robillard <d@drobilla.net> | 2011-10-21 22:29:51 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2011-10-21 22:29:51 +0000 |
commit | 20b765b8befa32eed913e16d68f03a65459a605d (patch) | |
tree | 955dda8e59707c7dc0149288b31187d071518ce4 /include/ingen/ServerInterface.hpp | |
parent | e928751490386d4ec028a3314ebc89cdd25ea45d (diff) | |
download | ingen-20b765b8befa32eed913e16d68f03a65459a605d.tar.gz ingen-20b765b8befa32eed913e16d68f03a65459a605d.tar.bz2 ingen-20b765b8befa32eed913e16d68f03a65459a605d.zip |
Make engine receivers depend only on ServerInterface.
git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@3572 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'include/ingen/ServerInterface.hpp')
-rw-r--r-- | include/ingen/ServerInterface.hpp | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/include/ingen/ServerInterface.hpp b/include/ingen/ServerInterface.hpp index 1b5fd56d..c779089d 100644 --- a/include/ingen/ServerInterface.hpp +++ b/include/ingen/ServerInterface.hpp @@ -39,7 +39,7 @@ public: virtual Raul::URI uri() const = 0; // Responses - virtual void set_next_response_id(int32_t id) = 0; + virtual void respond_to(ClientInterface* client, int32_t id) = 0; virtual void disable_responses() = 0; // Client registration @@ -47,9 +47,7 @@ public: virtual void unregister_client(const Raul::URI& uri) = 0; // Requests - virtual void ping() = 0; - virtual void get(const Raul::URI& uri) = 0; }; |