summaryrefslogtreecommitdiffstats
path: root/src/server/NodeFactory.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/server/NodeFactory.hpp')
-rw-r--r--src/server/NodeFactory.hpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/server/NodeFactory.hpp b/src/server/NodeFactory.hpp
index 2188266b..a6811c9c 100644
--- a/src/server/NodeFactory.hpp
+++ b/src/server/NodeFactory.hpp
@@ -22,7 +22,7 @@
#include "raul/SharedPtr.hpp"
#include "raul/URI.hpp"
-#include "ingen/shared/World.hpp"
+#include "ingen/World.hpp"
namespace Ingen {
namespace Server {
@@ -39,7 +39,7 @@ class LV2Info;
class NodeFactory
{
public:
- explicit NodeFactory(Ingen::Shared::World* world);
+ explicit NodeFactory(Ingen::World* world);
~NodeFactory();
void load_plugin(const Raul::URI& uri);
@@ -54,10 +54,10 @@ private:
void load_lv2_plugins();
void load_internal_plugins();
- Plugins _plugins;
- Ingen::Shared::World* _world;
- SharedPtr<LV2Info> _lv2_info;
- bool _has_loaded;
+ Plugins _plugins;
+ Ingen::World* _world;
+ SharedPtr<LV2Info> _lv2_info;
+ bool _has_loaded;
};
} // namespace Server