diff options
Diffstat (limited to 'src/serialisation')
-rw-r--r-- | src/serialisation/serialisation.hpp | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/serialisation/serialisation.hpp b/src/serialisation/serialisation.hpp index b984102d..d04639a5 100644 --- a/src/serialisation/serialisation.hpp +++ b/src/serialisation/serialisation.hpp @@ -18,6 +18,8 @@ #ifndef INGEN_SERIALISATION_H #define INGEN_SERIALISATION_H +#include <boost/shared_ptr.hpp> + namespace Ingen { namespace Shared { class World; class Store; } @@ -31,8 +33,8 @@ class Serialiser; extern "C" { extern Parser* new_parser(); - extern Serialiser* new_serialiser(Ingen::Shared::World* world, - SharedPtr<Shared::Store> store); + extern Serialiser* new_serialiser(Ingen::Shared::World* world, + boost::shared_ptr<Shared::Store> store); } |