diff options
author | David Robillard <d@drobilla.net> | 2009-06-03 04:16:04 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2009-06-03 04:16:04 +0000 |
commit | 4baec44d69d855a28d234b375bdb902e89114356 (patch) | |
tree | 753b8a475248507cbf13812ae0770bb24f1122f5 /src/serialisation | |
parent | bb4f3f48003b20266862752e402ed492e28303bf (diff) | |
download | ingen-4baec44d69d855a28d234b375bdb902e89114356.tar.gz ingen-4baec44d69d855a28d234b375bdb902e89114356.tar.bz2 ingen-4baec44d69d855a28d234b375bdb902e89114356.zip |
Update bindings.
git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@2079 a436a847-0d15-0410-975c-d299462d15a1
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); } |