summaryrefslogtreecommitdiffstats
path: root/src/libs/serialisation/Loader.hpp
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2007-10-07 19:00:30 +0000
committerDavid Robillard <d@drobilla.net>2007-10-07 19:00:30 +0000
commit2cb36f0265a391388b6edf988d919911b79aca4d (patch)
tree7b796835325e84e152365104b4c23bf4109f2293 /src/libs/serialisation/Loader.hpp
parent299f075679fc7ea6a67001c2cc0442511e167cbc (diff)
downloadingen-2cb36f0265a391388b6edf988d919911b79aca4d.tar.gz
ingen-2cb36f0265a391388b6edf988d919911b79aca4d.tar.bz2
ingen-2cb36f0265a391388b6edf988d919911b79aca4d.zip
Begin using shared virtual Node interface client side.
git-svn-id: http://svn.drobilla.net/lad/ingen@836 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src/libs/serialisation/Loader.hpp')
-rw-r--r--src/libs/serialisation/Loader.hpp7
1 files changed, 4 insertions, 3 deletions
diff --git a/src/libs/serialisation/Loader.hpp b/src/libs/serialisation/Loader.hpp
index 87465880..158831cb 100644
--- a/src/libs/serialisation/Loader.hpp
+++ b/src/libs/serialisation/Loader.hpp
@@ -25,10 +25,13 @@
#include <raul/Path.hpp>
#include <raul/Atom.hpp>
#include <raul/Table.hpp>
+#include "interface/GraphObject.hpp"
namespace Raul { class Atom; namespace RDF { class World; } }
namespace Ingen { namespace Shared { class EngineInterface; } }
+using namespace Ingen::Shared;
+
namespace Ingen {
namespace Serialisation {
@@ -37,8 +40,6 @@ class Loader {
public:
virtual ~Loader() {}
- typedef Raul::Table<std::string, Raul::Atom> Metadata;
-
virtual bool
load(SharedPtr<Ingen::Shared::EngineInterface> engine,
Raul::RDF::World* world,
@@ -46,7 +47,7 @@ public:
boost::optional<Raul::Path> parent,
std::string patch_name,
Glib::ustring patch_uri = "",
- Metadata data = Metadata());
+ GraphObject::MetadataMap data = GraphObject::MetadataMap());
};