From 8935cca8706d74f39d3cca43b4df3ab48799b06a Mon Sep 17 00:00:00 2001 From: David Robillard Date: Thu, 28 May 2009 18:15:11 +0000 Subject: Replace new_plugin with put. Fix default symbol generation (URI chopping). git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@2029 a436a847-0d15-0410-975c-d299462d15a1 --- src/engine/OSCClientSender.cpp | 22 ---------------------- 1 file changed, 22 deletions(-) (limited to 'src/engine/OSCClientSender.cpp') diff --git a/src/engine/OSCClientSender.cpp b/src/engine/OSCClientSender.cpp index 3d33c6ce..76ab0459 100644 --- a/src/engine/OSCClientSender.cpp +++ b/src/engine/OSCClientSender.cpp @@ -259,26 +259,4 @@ OSCClientSender::activity(const Path& path) } -/** \page client_osc_namespace - *

/ingen/plugin

- * \arg \b uri (string) - URI of plugin (e.g. http://example.org/filtermatic) - * \arg \b type (string) - Type of plugin (e.g. "lv2:Plugin", "ingen:LADSPAPlugin") - * \arg \b symbol (string) - Valid symbol for plugin (default symbol for nodes) (e.g. "adsr") - * \arg \b name (string) - Descriptive human-readable name of plugin (e.g. "ADSR Envelope") - * - * Notification of the existence of a plugin. - */ -void -OSCClientSender::new_plugin(const URI& uri, - const URI& type_uri, - const Symbol& symbol) -{ - lo_message m = lo_message_new(); - lo_message_add_string(m, uri.c_str()); - lo_message_add_string(m, type_uri.c_str()); - lo_message_add_string(m, symbol.c_str()); - send_message("/ingen/plugin", m); -} - - } // namespace Ingen -- cgit v1.2.1