From a6fb6a0289ea47692d87f3e0200532a426f8e60d Mon Sep 17 00:00:00 2001 From: David Robillard Date: Mon, 28 Jul 2008 21:56:03 +0000 Subject: Simply global memory management crap by using shared_ptr in the World struct (it's not C anyway, might as well). Properly support LV2 events from plugin UIs over OSC and directly (w/ monolithic UI/engine). Fix crashes on node destruction with monolithic UI/engine. Resolves ticket #177. git-svn-id: http://svn.drobilla.net/lad/ingen@1293 a436a847-0d15-0410-975c-d299462d15a1 --- src/libs/client/OSCEngineSender.hpp | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) (limited to 'src/libs/client/OSCEngineSender.hpp') diff --git a/src/libs/client/OSCEngineSender.hpp b/src/libs/client/OSCEngineSender.hpp index 6bd088ec..dfbdff62 100644 --- a/src/libs/client/OSCEngineSender.hpp +++ b/src/libs/client/OSCEngineSender.hpp @@ -61,14 +61,16 @@ public: void register_client(ClientInterface* client); void unregister_client(const string& uri); - // Engine commands void load_plugins(); void activate(); void deactivate(); void quit(); - + // Bundles + void bundle_begin(); + void bundle_end(); + // Object commands void create_patch(const string& path, @@ -165,6 +167,7 @@ public: void request_all_objects(); protected: + lo_bundle _bundle; string _engine_url; lo_address _engine_addr; int _client_port; -- cgit v1.2.1