summaryrefslogtreecommitdiffstats
path: root/src/libs/engine/NodeFactory.h
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2007-04-19 18:29:16 +0000
committerDavid Robillard <d@drobilla.net>2007-04-19 18:29:16 +0000
commit6b3443ebabdeec0b908fb505e30c1422b96589b7 (patch)
tree7cfe81e88cfa92a8ef413f319dd143bd9a1a5e0d /src/libs/engine/NodeFactory.h
parent71d83ce627f8d8ddfc381312155d1a05082618b2 (diff)
downloadingen-6b3443ebabdeec0b908fb505e30c1422b96589b7.tar.gz
ingen-6b3443ebabdeec0b908fb505e30c1422b96589b7.tar.bz2
ingen-6b3443ebabdeec0b908fb505e30c1422b96589b7.zip
Renamed SLV2Model SLV2World.
Updated Ingen for SLV2 API changes. git-svn-id: http://svn.drobilla.net/lad/ingen@459 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src/libs/engine/NodeFactory.h')
-rw-r--r--src/libs/engine/NodeFactory.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/libs/engine/NodeFactory.h b/src/libs/engine/NodeFactory.h
index e7812d6a..fcd4179e 100644
--- a/src/libs/engine/NodeFactory.h
+++ b/src/libs/engine/NodeFactory.h
@@ -25,6 +25,9 @@
#include <string>
#include <ladspa.h>
#include <pthread.h>
+#ifdef HAVE_SLV2
+#include <slv2/slv2.h>
+#endif
using std::string; using std::list;
@@ -69,6 +72,8 @@ private:
#ifdef HAVE_SLV2
void load_lv2_plugins();
Node* load_lv2_plugin(const string& plugin_uri, const string& name, size_t poly, Patch* parent, SampleRate srate, size_t buffer_size);
+
+ SLV2World _world;
#endif
#ifdef HAVE_DSSI