summaryrefslogtreecommitdiffstats
path: root/src/libs/client/OSCEngineSender.hpp
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2008-08-17 04:05:30 +0000
committerDavid Robillard <d@drobilla.net>2008-08-17 04:05:30 +0000
commitfa067527fe00b66b85d71955e152e9ef9215c9cd (patch)
tree382a8e9e58259929415e7188992252ac1ca2ea9b /src/libs/client/OSCEngineSender.hpp
parent3019b09099371b3fe568b7dcc3bb92203d800b1f (diff)
downloadingen-fa067527fe00b66b85d71955e152e9ef9215c9cd.tar.gz
ingen-fa067527fe00b66b85d71955e152e9ef9215c9cd.tar.bz2
ingen-fa067527fe00b66b85d71955e152e9ef9215c9cd.zip
Replace imperative polyphony/polyphonic stuff with properties (kill more API).
git-svn-id: http://svn.drobilla.net/lad/ingen@1412 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src/libs/client/OSCEngineSender.hpp')
-rw-r--r--src/libs/client/OSCEngineSender.hpp14
1 files changed, 3 insertions, 11 deletions
diff --git a/src/libs/client/OSCEngineSender.hpp b/src/libs/client/OSCEngineSender.hpp
index 985e1db3..771a7232 100644
--- a/src/libs/client/OSCEngineSender.hpp
+++ b/src/libs/client/OSCEngineSender.hpp
@@ -86,14 +86,12 @@ public:
bool is_output);
void new_node(const string& path,
- const string& plugin_uri,
- bool polyphonic);
+ const string& plugin_uri);
void new_node_deprecated(const string& path,
const string& plugin_type,
const string& library_name,
- const string& plugin_label,
- bool polyphonic);
+ const string& plugin_label);
void rename(const string& old_path,
const string& new_name);
@@ -148,19 +146,13 @@ public:
const Raul::Atom& value);
// Requests //
-
void ping();
-
void request_plugin(const string& uri);
-
void request_object(const string& path);
-
void request_port_value(const string& port_path);
-
void request_variable(const string& path, const string& key);
-
+ void request_property(const string& path, const string& key);
void request_plugins();
-
void request_all_objects();
protected: