summaryrefslogtreecommitdiffstats
path: root/src/libs/serialisation/Loader.hpp
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2007-11-30 07:38:42 +0000
committerDavid Robillard <d@drobilla.net>2007-11-30 07:38:42 +0000
commit58af61933fe938c404b8fcd916b3939257663cdd (patch)
treed8dc1d63966756cc652178359f2b00982109a29f /src/libs/serialisation/Loader.hpp
parent61e1e6e1442e97365db33b6071f8710a68987d64 (diff)
downloadingen-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/serialisation/Loader.hpp')
-rw-r--r--src/libs/serialisation/Loader.hpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/libs/serialisation/Loader.hpp b/src/libs/serialisation/Loader.hpp
index e81fba4c..a1d4e302 100644
--- a/src/libs/serialisation/Loader.hpp
+++ b/src/libs/serialisation/Loader.hpp
@@ -26,7 +26,7 @@
#include <raul/Table.hpp>
#include "interface/GraphObject.hpp"
-namespace Raul { namespace RDF { class World; } }
+namespace Redland { class World; }
namespace Ingen { namespace Shared { class EngineInterface; } }
using namespace Ingen::Shared;
@@ -41,12 +41,12 @@ public:
virtual bool
load(SharedPtr<Ingen::Shared::EngineInterface> engine,
- Raul::RDF::World* world,
+ Redland::World* world,
const Glib::ustring& uri,
boost::optional<Raul::Path> parent,
std::string patch_name,
Glib::ustring patch_uri = "",
- GraphObject::Variables data = GraphObject::Variables());
+ GraphObject::Variables data = GraphObject::Variables());
};