diff options
author | David Robillard <d@drobilla.net> | 2008-08-17 01:34:53 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2008-08-17 01:34:53 +0000 |
commit | 694b31089c8060fc6b908b146b12c0e340d004c7 (patch) | |
tree | 48b0e0195de5e7b297e65be15eda35639585ef8a /src/bindings/Client.hpp | |
parent | 3dc90cc95df35e5c786857336f22856c6373b00f (diff) | |
download | ingen-694b31089c8060fc6b908b146b12c0e340d004c7.tar.gz ingen-694b31089c8060fc6b908b146b12c0e340d004c7.tar.bz2 ingen-694b31089c8060fc6b908b146b12c0e340d004c7.zip |
Cloooser...
Bundling of OSC communication both ways (previous was just engine->client).
Factor out common OSC*Sender functionality (bundling stuff).
Fully type-safe and polyphony-aware port value setting/getting, from RDF through OSC through engine and back again.
git-svn-id: http://svn.drobilla.net/lad/ingen@1409 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src/bindings/Client.hpp')
-rw-r--r-- | src/bindings/Client.hpp | 12 |
1 files changed, 10 insertions, 2 deletions
diff --git a/src/bindings/Client.hpp b/src/bindings/Client.hpp index d564d1ca..5fac8552 100644 --- a/src/bindings/Client.hpp +++ b/src/bindings/Client.hpp @@ -84,8 +84,16 @@ public: const std::string& predicate, const Raul::Atom& value) {} - virtual void control_change(const std::string& port_path, - float value) {} + virtual void set_port_value(const std::string& port_path, + const std::string& type_uri, + uint32_t data_size, + const void* data) {} + + virtual void set_port_value(const std::string& port_path, + const std::string& type_uri, + uint32_t voice, + uint32_t data_size, + const void* data) {} virtual void program_add(const std::string& node_path, uint32_t bank, |