From e668b8c846175f90cf22b456c5e5a4cc85410da4 Mon Sep 17 00:00:00 2001 From: David Robillard Date: Thu, 17 Feb 2011 10:30:08 +0000 Subject: Jack session support for ingen. git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@2978 a436a847-0d15-0410-975c-d299462d15a1 --- src/serialisation/Parser.hpp | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) (limited to 'src/serialisation/Parser.hpp') diff --git a/src/serialisation/Parser.hpp b/src/serialisation/Parser.hpp index 103cd9a0..d9b33956 100644 --- a/src/serialisation/Parser.hpp +++ b/src/serialisation/Parser.hpp @@ -43,7 +43,7 @@ public: typedef Shared::GraphObject::Properties Properties; - virtual bool parse_document( + virtual bool parse_file( Ingen::Shared::World* world, Shared::CommonInterface* target, Glib::ustring document_uri, @@ -73,9 +73,11 @@ public: boost::optional data=boost::optional()); struct PatchRecord { - PatchRecord(const Raul::URI& u, const Glib::ustring& f) : uri(u), filename(f) {} - const Raul::URI uri; - const Glib::ustring filename; + PatchRecord(const Raul::URI& u, const Glib::ustring& f) + : patch_uri(u), file_uri(f) + {} + const Raul::URI patch_uri; + const Glib::ustring file_uri; }; typedef std::list PatchRecords; -- cgit v1.2.1