summaryrefslogtreecommitdiffstats
path: root/src/libs/client
diff options
context:
space:
mode:
Diffstat (limited to 'src/libs/client')
-rw-r--r--src/libs/client/OSCEngineSender.cpp28
-rw-r--r--src/libs/client/OSCEngineSender.hpp4
2 files changed, 0 insertions, 32 deletions
diff --git a/src/libs/client/OSCEngineSender.cpp b/src/libs/client/OSCEngineSender.cpp
index 22f0ce86..4f8fcbe5 100644
--- a/src/libs/client/OSCEngineSender.cpp
+++ b/src/libs/client/OSCEngineSender.cpp
@@ -220,34 +220,6 @@ OSCEngineSender::clear_patch(const string& patch_path)
void
-OSCEngineSender::set_polyphony(const string& patch_path, uint32_t poly)
-{
- send("/ingen/set_polyphony", "isi",
- next_id(),
- patch_path.c_str(),
- poly,
- LO_ARGS_END);
-}
-
-
-void
-OSCEngineSender::set_polyphonic(const string& path, bool poly)
-{
- if (poly) {
- send("/ingen/set_polyphonic", "isT",
- next_id(),
- path.c_str(),
- LO_ARGS_END);
- } else {
- send("/ingen/set_polyphonic", "isF",
- next_id(),
- path.c_str(),
- LO_ARGS_END);
- }
-}
-
-
-void
OSCEngineSender::connect(const string& src_port_path,
const string& dst_port_path)
{
diff --git a/src/libs/client/OSCEngineSender.hpp b/src/libs/client/OSCEngineSender.hpp
index 771a7232..f94b86d5 100644
--- a/src/libs/client/OSCEngineSender.hpp
+++ b/src/libs/client/OSCEngineSender.hpp
@@ -100,10 +100,6 @@ public:
void clear_patch(const string& patch_path);
- void set_polyphony(const string& patch_path, uint32_t poly);
-
- void set_polyphonic(const string& path, bool poly);
-
void connect(const string& src_port_path,
const string& dst_port_path);