summaryrefslogtreecommitdiffstats
path: root/src/engine/NodeFactory.hpp
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2011-02-11 22:14:01 +0000
committerDavid Robillard <d@drobilla.net>2011-02-11 22:14:01 +0000
commit77d1d3ae2d861f76264020b112386cdd57ce1f86 (patch)
treeca40355d145c09b43b2e15961a3e05aab280947c /src/engine/NodeFactory.hpp
parent796f8d48f0ff6434635237038e03f900161ce331 (diff)
downloadingen-77d1d3ae2d861f76264020b112386cdd57ce1f86.tar.gz
ingen-77d1d3ae2d861f76264020b112386cdd57ce1f86.tar.bz2
ingen-77d1d3ae2d861f76264020b112386cdd57ce1f86.zip
Remove LADSPA support from Ingen (LADSPA can be used via NASPRO).
git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@2922 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src/engine/NodeFactory.hpp')
-rw-r--r--src/engine/NodeFactory.hpp17
1 files changed, 1 insertions, 16 deletions
diff --git a/src/engine/NodeFactory.hpp b/src/engine/NodeFactory.hpp
index 88a4b099..1f53f6af 100644
--- a/src/engine/NodeFactory.hpp
+++ b/src/engine/NodeFactory.hpp
@@ -38,13 +38,7 @@ class LV2Info;
#endif
-/** Loads plugins and creates Nodes from them.
- *
- * NodeFactory's responsibility is to get enough information to allow the
- * loading of a plugin possible (ie finding/opening shared libraries etc)
- *
- * The constructor of various Node types (ie LADSPANode) are responsible
- * for actually creating a Node instance of the plugin.
+/** Discovers and loads plugin libraries.
*
* \ingroup engine
*/
@@ -61,16 +55,7 @@ public:
PluginImpl* plugin(const Raul::URI& uri);
- /** DEPRECATED */
- PluginImpl* plugin(const std::string& type,
- const std::string& lib,
- const std::string& label);
-
private:
-#ifdef HAVE_LADSPA_H
- void load_ladspa_plugins();
-#endif
-
#ifdef HAVE_SLV2
void load_lv2_plugins();
#endif