From ec9540a559c40046123a2ac4be83faf90b79fbb0 Mon Sep 17 00:00:00 2001 From: David Robillard Date: Mon, 8 Oct 2007 17:13:34 +0000 Subject: Dynamically load Serialiser from serialisation module, make it actually work, etc. git-svn-id: http://svn.drobilla.net/lad/ingen@850 a436a847-0d15-0410-975c-d299462d15a1 --- src/libs/serialisation/serialisation.hpp | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) (limited to 'src/libs/serialisation/serialisation.hpp') diff --git a/src/libs/serialisation/serialisation.hpp b/src/libs/serialisation/serialisation.hpp index f65b9c2e..8f6e8291 100644 --- a/src/libs/serialisation/serialisation.hpp +++ b/src/libs/serialisation/serialisation.hpp @@ -19,14 +19,19 @@ #define INGEN_SERIALISATION_H namespace Ingen { + +namespace Shared { class World; } + namespace Serialisation { class Loader; +class Serialiser; extern "C" { - extern Loader* new_loader(); + extern Loader* new_loader(); + extern Serialiser* new_serialiser(Ingen::Shared::World* world); } -- cgit v1.2.1