diff options
author | David Robillard <d@drobilla.net> | 2007-11-30 07:38:42 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2007-11-30 07:38:42 +0000 |
commit | 58af61933fe938c404b8fcd916b3939257663cdd (patch) | |
tree | d8dc1d63966756cc652178359f2b00982109a29f /src/libs/module | |
parent | 61e1e6e1442e97365db33b6071f8710a68987d64 (diff) | |
download | ingen-58af61933fe938c404b8fcd916b3939257663cdd.tar.gz ingen-58af61933fe938c404b8fcd916b3939257663cdd.tar.bz2 ingen-58af61933fe938c404b8fcd916b3939257663cdd.zip |
Split redland C++ wrappers out from Raul.
git-svn-id: http://svn.drobilla.net/lad/ingen@927 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src/libs/module')
-rw-r--r-- | src/libs/module/Makefile.am | 4 | ||||
-rw-r--r-- | src/libs/module/World.hpp | 4 | ||||
-rw-r--r-- | src/libs/module/global.cpp | 2 |
3 files changed, 5 insertions, 5 deletions
diff --git a/src/libs/module/Makefile.am b/src/libs/module/Makefile.am index 0d52e635..a4b22986 100644 --- a/src/libs/module/Makefile.am +++ b/src/libs/module/Makefile.am @@ -1,8 +1,8 @@ noinst_LTLIBRARIES = libingen_module.la -libingen_module_la_CXXFLAGS = @GLIBMM_CFLAGS@ @RAUL_CFLAGS@ @SLV2_CFLAGS@ -DINGEN_MODULE_DIR=\"$(libdir)/ingen\" +libingen_module_la_CXXFLAGS = @GLIBMM_CFLAGS@ @REDLANDMM_CFLAGS@ @RAUL_CFLAGS@ @SLV2_CFLAGS@ -DINGEN_MODULE_DIR=\"$(libdir)/ingen\" -libingen_module_la_LIBADD = @GLIBMM_LIBS@ @RAUL_LIBS@ @SLV2_LIBS@ +libingen_module_la_LIBADD = @GLIBMM_LIBS@ @REDLANDMM_LIBS@ @RAUL_LIBS@ @SLV2_LIBS@ libingen_module_la_SOURCES = \ global.hpp \ diff --git a/src/libs/module/World.hpp b/src/libs/module/World.hpp index ca8f7b14..b61fe2af 100644 --- a/src/libs/module/World.hpp +++ b/src/libs/module/World.hpp @@ -23,7 +23,7 @@ #include <string> #include <glibmm/module.h> #include <raul/SharedPtr.hpp> -#include <raul/RDFWorld.hpp> +#include <redlandmm/World.hpp> #ifdef HAVE_SLV2 #include <slv2/slv2.h> @@ -52,7 +52,7 @@ struct World { #ifdef HAVE_SLV2 SLV2World slv2_world; #endif - Raul::RDF::World* rdf_world; + Redland::World* rdf_world; EngineInterface* engine; diff --git a/src/libs/module/global.cpp b/src/libs/module/global.cpp index 15e844c1..6cd54685 100644 --- a/src/libs/module/global.cpp +++ b/src/libs/module/global.cpp @@ -44,7 +44,7 @@ get_world() if (!world) { world = new World(); - world->rdf_world = new Raul::RDF::World(); + world->rdf_world = new Redland::World(); #ifdef HAVE_SLV2 world->slv2_world = slv2_world_new_using_rdf_world(world->rdf_world->world()); slv2_world_load_all(world->slv2_world); |