diff options
author | David Robillard <d@drobilla.net> | 2007-07-31 15:38:31 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2007-07-31 15:38:31 +0000 |
commit | e0efa719ab0872b852a1c50108b0b3ac73abb630 (patch) | |
tree | 2048caf0d6b02ee898783f6c37681f91496ad254 /src/libs/module/module.h | |
parent | 57cd2b32147e1b321f0569abd29f15cd7cf0184d (diff) | |
download | ingen-e0efa719ab0872b852a1c50108b0b3ac73abb630.tar.gz ingen-e0efa719ab0872b852a1c50108b0b3ac73abb630.tar.bz2 ingen-e0efa719ab0872b852a1c50108b0b3ac73abb630.zip |
First steps towards Ingen SWIG bindings.
git-svn-id: http://svn.drobilla.net/lad/ingen@661 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src/libs/module/module.h')
-rw-r--r-- | src/libs/module/module.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/libs/module/module.h b/src/libs/module/module.h index 6c809f7e..48bdeedf 100644 --- a/src/libs/module/module.h +++ b/src/libs/module/module.h @@ -20,14 +20,15 @@ #include "World.hpp" #include "Module.hpp" +#include "raul/SharedPtr.hpp" namespace Ingen { namespace Shared { extern "C" { - World* get_world(); - void destroy_world(); + World* get_world(); + void destroy_world(); } |