summaryrefslogtreecommitdiffstats
path: root/src/common/interface/ClientInterface.hpp
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2008-08-17 01:34:53 +0000
committerDavid Robillard <d@drobilla.net>2008-08-17 01:34:53 +0000
commit694b31089c8060fc6b908b146b12c0e340d004c7 (patch)
tree48b0e0195de5e7b297e65be15eda35639585ef8a /src/common/interface/ClientInterface.hpp
parent3dc90cc95df35e5c786857336f22856c6373b00f (diff)
downloadingen-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/common/interface/ClientInterface.hpp')
-rw-r--r--src/common/interface/ClientInterface.hpp16
1 files changed, 1 insertions, 15 deletions
diff --git a/src/common/interface/ClientInterface.hpp b/src/common/interface/ClientInterface.hpp
index e6bb9d6d..16e17fc0 100644
--- a/src/common/interface/ClientInterface.hpp
+++ b/src/common/interface/ClientInterface.hpp
@@ -36,10 +36,9 @@ namespace Shared {
class ClientInterface : public CommonInterface
{
public:
-
virtual ~ClientInterface() {}
- inline const std::string& uri() const { return _uri; }
+ virtual std::string uri() const = 0;
virtual void response_ok(int32_t id) = 0;
virtual void response_error(int32_t id, const std::string& msg) = 0;
@@ -97,9 +96,6 @@ public:
virtual void object_destroyed(const std::string& path) = 0;
- virtual void control_change(const std::string& port_path,
- float value) = 0;
-
virtual void port_activity(const std::string& port_path) = 0;
virtual void program_add(const std::string& node_path,
@@ -110,16 +106,6 @@ public:
virtual void program_remove(const std::string& node_path,
uint32_t bank,
uint32_t program) = 0;
-
-protected:
- ClientInterface(const std::string& uri) : _uri(uri) {}
- ClientInterface() {
- static char uri_buf[20];
- snprintf(uri_buf, 127, "%p", this);
- _uri = uri_buf;
- }
-
- std::string _uri;
};