summaryrefslogtreecommitdiffstats
path: root/src/shared/World.cpp
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2012-05-11 04:55:56 +0000
committerDavid Robillard <d@drobilla.net>2012-05-11 04:55:56 +0000
commite64eabe64ee966364bc5f6704c5227687ea309d8 (patch)
treea62c6044a1b4cc4f070958dfaf29f16231a7c2d8 /src/shared/World.cpp
parent908a001ea84dcf3a1204746d110068454c637119 (diff)
downloadingen-e64eabe64ee966364bc5f6704c5227687ea309d8.tar.gz
ingen-e64eabe64ee966364bc5f6704c5227687ea309d8.tar.bz2
ingen-e64eabe64ee966364bc5f6704c5227687ea309d8.zip
Move Forge to the appropriate namespace.
git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@4350 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src/shared/World.cpp')
-rw-r--r--src/shared/World.cpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/shared/World.cpp b/src/shared/World.cpp
index aeb9e641..b71ea8c8 100644
--- a/src/shared/World.cpp
+++ b/src/shared/World.cpp
@@ -108,7 +108,7 @@ public:
, lv2_features(NULL)
, rdf_world(new Sord::World())
, uri_map(new Ingen::Shared::URIMap(map, unmap))
- , forge(new Ingen::Forge(*uri_map))
+ , forge(new Ingen::Shared::Forge(*uri_map))
, uris(new Shared::URIs(*forge, uri_map))
, lilv_world(lilv_world_new())
{
@@ -168,7 +168,7 @@ public:
LV2Features* lv2_features;
Sord::World* rdf_world;
URIMap* uri_map;
- Ingen::Forge* forge;
+ Shared::Forge* forge;
URIs* uris;
SharedPtr<Interface> interface;
SharedPtr<EngineBase> engine;
@@ -212,10 +212,10 @@ Shared::Configuration& World::conf() { return _impl->conf; }
Sord::World* World::rdf_world() { return _impl->rdf_world; }
LilvWorld* World::lilv_world() { return _impl->lilv_world; }
-LV2Features& World::lv2_features() { return *_impl->lv2_features; }
-Ingen::Forge& World::forge() { return *_impl->forge; }
-URIs& World::uris() { return *_impl->uris; }
-URIMap& World::uri_map() { return *_impl->uri_map; }
+LV2Features& World::lv2_features() { return *_impl->lv2_features; }
+Shared::Forge& World::forge() { return *_impl->forge; }
+URIs& World::uris() { return *_impl->uris; }
+URIMap& World::uri_map() { return *_impl->uri_map; }
bool
World::load_module(const char* name)