From 75911e8ae28f011727ce303961a1adb56643689d Mon Sep 17 00:00:00 2001 From: David Robillard Date: Wed, 25 Jul 2007 06:07:42 +0000 Subject: Fix running with ingen -eg. Start basic framework of an Ingen "Core" system/library (in module library for now). git-svn-id: http://svn.drobilla.net/lad/ingen@624 a436a847-0d15-0410-975c-d299462d15a1 --- src/libs/engine/NodeFactory.hpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/libs/engine/NodeFactory.hpp') diff --git a/src/libs/engine/NodeFactory.hpp b/src/libs/engine/NodeFactory.hpp index 3b8eb711..184af94c 100644 --- a/src/libs/engine/NodeFactory.hpp +++ b/src/libs/engine/NodeFactory.hpp @@ -19,6 +19,7 @@ #define NODEFACTORY_H #include "../../../../config/config.h" +#include "module/module.h" #include #include @@ -52,7 +53,7 @@ class Plugin; class NodeFactory { public: - NodeFactory(); + NodeFactory(Ingen::Shared::World* world); ~NodeFactory(); void load_plugins(); @@ -72,8 +73,6 @@ 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 @@ -87,6 +86,7 @@ private: list _internal_plugins; list _plugins; // FIXME: make a map + Ingen::Shared::World* _world; bool _has_loaded; }; -- cgit v1.2.1