summaryrefslogtreecommitdiffstats
path: root/src/client/ThreadedSigClientInterface.hpp
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2009-05-13 16:21:37 +0000
committerDavid Robillard <d@drobilla.net>2009-05-13 16:21:37 +0000
commit76500fc464ffa1cdeec0d90c466783fe1b3ac07d (patch)
tree9fa9cc85e1dfdd1fda72370927cf7d8c0801f191 /src/client/ThreadedSigClientInterface.hpp
parent878a4a2d056f42c18ba1f0830ded9a1820e9192d (diff)
downloadingen-76500fc464ffa1cdeec0d90c466783fe1b3ac07d.tar.gz
ingen-76500fc464ffa1cdeec0d90c466783fe1b3ac07d.tar.bz2
ingen-76500fc464ffa1cdeec0d90c466783fe1b3ac07d.zip
Remove old/unused DSSI program API.
If/when LV2 gets programs this should be implemented through the generic property based interface. git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@2001 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src/client/ThreadedSigClientInterface.hpp')
-rw-r--r--src/client/ThreadedSigClientInterface.hpp10
1 files changed, 0 insertions, 10 deletions
diff --git a/src/client/ThreadedSigClientInterface.hpp b/src/client/ThreadedSigClientInterface.hpp
index bb348437..029a30c1 100644
--- a/src/client/ThreadedSigClientInterface.hpp
+++ b/src/client/ThreadedSigClientInterface.hpp
@@ -63,8 +63,6 @@ public:
, property_change_slot(signal_property_change.make_slot())
, port_value_slot(signal_port_value.make_slot())
, activity_slot(signal_activity.make_slot())
- , program_add_slot(signal_program_add.make_slot())
- , program_remove_slot(signal_program_remove.make_slot())
{
}
@@ -136,12 +134,6 @@ public:
void activity(const Raul::Path& port_path)
{ push_sig(sigc::bind(activity_slot, port_path)); }
- void program_add(const Raul::Path& path, uint32_t bank, uint32_t program, const std::string& name)
- { push_sig(sigc::bind(program_add_slot, path, bank, program, name)); }
-
- void program_remove(const Raul::Path& path, uint32_t bank, uint32_t program)
- { push_sig(sigc::bind(program_remove_slot, path, bank, program)); }
-
/** Process all queued events - Called from GTK thread to emit signals. */
bool emit_signals();
@@ -173,8 +165,6 @@ private:
sigc::slot<void, Raul::Path, Raul::Atom> port_value_slot;
sigc::slot<void, Raul::Path, uint32_t, Raul::Atom> voice_value_slot;
sigc::slot<void, Raul::Path> activity_slot;
- sigc::slot<void, Raul::Path, uint32_t, uint32_t, std::string> program_add_slot;
- sigc::slot<void, Raul::Path, uint32_t, uint32_t> program_remove_slot;
};