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/engine/QueuedEngineInterface.hpp | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'src/libs/engine/QueuedEngineInterface.hpp') diff --git a/src/libs/engine/QueuedEngineInterface.hpp b/src/libs/engine/QueuedEngineInterface.hpp index 54b3b5fd..adf6d263 100644 --- a/src/libs/engine/QueuedEngineInterface.hpp +++ b/src/libs/engine/QueuedEngineInterface.hpp @@ -74,6 +74,10 @@ public: virtual void activate(); virtual void deactivate(); virtual void quit(); + + // Bundles + virtual void bundle_begin(); + virtual void bundle_end(); // Object commands @@ -177,6 +181,7 @@ protected: SharedPtr _responder; ///< NULL if responding disabled Engine& _engine; + bool _in_bundle; ///< True iff a bundle is currently being received private: SampleCount now() const; -- cgit v1.2.1