summaryrefslogtreecommitdiffstats
path: root/src/serialisation/Parser.hpp
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2011-02-16 18:26:57 +0000
committerDavid Robillard <d@drobilla.net>2011-02-16 18:26:57 +0000
commit2c1079446f0b06559a683a9f4b0192a4f7637770 (patch)
tree0bb095529e4654cdf4633512fdaaa599ed3370f0 /src/serialisation/Parser.hpp
parent0cb698a6d4652c54d49f599f1611e7c4a15d3778 (diff)
downloadingen-2c1079446f0b06559a683a9f4b0192a4f7637770.tar.gz
ingen-2c1079446f0b06559a683a9f4b0192a4f7637770.tar.bz2
ingen-2c1079446f0b06559a683a9f4b0192a4f7637770.zip
Drop redlandmm for sordmm.
git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@2959 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src/serialisation/Parser.hpp')
-rw-r--r--src/serialisation/Parser.hpp26
1 files changed, 13 insertions, 13 deletions
diff --git a/src/serialisation/Parser.hpp b/src/serialisation/Parser.hpp
index ed354905..06f42f14 100644
--- a/src/serialisation/Parser.hpp
+++ b/src/serialisation/Parser.hpp
@@ -24,8 +24,8 @@
#include <boost/optional.hpp>
#include "interface/GraphObject.hpp"
-namespace Raul { class Path; }
-namespace Redland { class World; class Model; class Node; }
+namespace Raul { class Path; }
+namespace Sord { class World; class Model; class Node; }
namespace Ingen { namespace Shared { class CommonInterface; } }
namespace Ingen {
@@ -86,7 +86,7 @@ private:
boost::optional<Raul::Path> parse(
Ingen::Shared::World* world,
Shared::CommonInterface* target,
- Redland::Model& model,
+ Sord::Model& model,
Glib::ustring document_uri,
boost::optional<Raul::Path> data_path=boost::optional<Raul::Path>(),
boost::optional<Raul::Path> parent=boost::optional<Raul::Path>(),
@@ -96,8 +96,8 @@ private:
boost::optional<Raul::Path> parse_patch(
Ingen::Shared::World* world,
Ingen::Shared::CommonInterface* target,
- Redland::Model& model,
- const Redland::Node& subject,
+ Sord::Model& model,
+ const Sord::Node& subject,
boost::optional<Raul::Path> parent=boost::optional<Raul::Path>(),
boost::optional<Raul::Symbol> symbol=boost::optional<Raul::Symbol>(),
boost::optional<Properties> data=boost::optional<Properties>());
@@ -105,27 +105,27 @@ private:
boost::optional<Raul::Path> parse_node(
Ingen::Shared::World* world,
Ingen::Shared::CommonInterface* target,
- Redland::Model& model,
- const Redland::Node& subject,
+ Sord::Model& model,
+ const Sord::Node& subject,
const Raul::Path& path,
boost::optional<Properties> data=boost::optional<Properties>());
bool parse_properties(
Ingen::Shared::World* world,
Ingen::Shared::CommonInterface* target,
- Redland::Model& model,
- const Redland::Node& subject,
+ Sord::Model& model,
+ const Sord::Node& subject,
const Raul::URI& uri,
- boost::optional<Properties> data=boost::optional<Properties>());
+ boost::optional<Properties> data = boost::optional<Properties>());
bool parse_connections(
Ingen::Shared::World* world,
Ingen::Shared::CommonInterface* target,
- Redland::Model& model,
- const Redland::Node& subject,
+ Sord::Model& model,
+ const Sord::Node& subject,
const Raul::Path& patch);
- bool skip_property(const Redland::Node& predicate);
+ bool skip_property(const Sord::Node& predicate);
};