summaryrefslogtreecommitdiffstats
path: root/ingen/ServerInterface.hpp
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2012-03-16 03:15:41 +0000
committerDavid Robillard <d@drobilla.net>2012-03-16 03:15:41 +0000
commit119468f621a59d86da10bedf75c4427b70f9d370 (patch)
treef15ea3f345d43b37d492096876c483543fcc1426 /ingen/ServerInterface.hpp
parent0b93e39af34d3af361f35d510224fda4fda56071 (diff)
downloadingen-119468f621a59d86da10bedf75c4427b70f9d370.tar.gz
ingen-119468f621a59d86da10bedf75c4427b70f9d370.tar.bz2
ingen-119468f621a59d86da10bedf75c4427b70f9d370.zip
Remove activity from interface and use set_property() instead.
Move client registration stuff to Engine and remove corresponding events. Simply response ID interface. git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@4066 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'ingen/ServerInterface.hpp')
-rw-r--r--ingen/ServerInterface.hpp11
1 files changed, 4 insertions, 7 deletions
diff --git a/ingen/ServerInterface.hpp b/ingen/ServerInterface.hpp
index 25016416..dade9658 100644
--- a/ingen/ServerInterface.hpp
+++ b/ingen/ServerInterface.hpp
@@ -36,13 +36,10 @@ class ServerInterface : public CommonInterface
public:
virtual ~ServerInterface() {}
- // Responses
- virtual void respond_to(ClientInterface* client, int32_t id) = 0;
- virtual void disable_responses() = 0;
-
- // Client registration
- virtual void register_client(ClientInterface* client) = 0;
- virtual void unregister_client(const Raul::URI& uri) = 0;
+ /** Set the ID to use to respond to the next message.
+ * Setting the ID to -1 will disable responses.
+ */
+ virtual void set_response_id(int32_t id) = 0;
// Requests
virtual void ping() = 0;