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/common/interface/ClientInterface.hpp | 1 - src/common/interface/EngineInterface.hpp | 7 +++++-- 2 files changed, 5 insertions(+), 3 deletions(-) (limited to 'src/common/interface') diff --git a/src/common/interface/ClientInterface.hpp b/src/common/interface/ClientInterface.hpp index 0da613c7..931e267b 100644 --- a/src/common/interface/ClientInterface.hpp +++ b/src/common/interface/ClientInterface.hpp @@ -44,7 +44,6 @@ public: inline const std::string& uri() const { return _uri; } virtual void response_ok(int32_t id) = 0; - virtual void response_error(int32_t id, const std::string& msg) = 0; virtual void enable() = 0; diff --git a/src/common/interface/EngineInterface.hpp b/src/common/interface/EngineInterface.hpp index c8fd08a9..41406ca8 100644 --- a/src/common/interface/EngineInterface.hpp +++ b/src/common/interface/EngineInterface.hpp @@ -49,13 +49,16 @@ public: virtual void register_client(ClientInterface* client) = 0; virtual void unregister_client(const string& uri) = 0; - // Engine commands virtual void load_plugins() = 0; virtual void activate() = 0; virtual void deactivate() = 0; virtual void quit() = 0; + // Bundles + virtual void bundle_begin() = 0; + virtual void bundle_end() = 0; + // Object commands virtual void create_patch(const string& path, @@ -136,7 +139,7 @@ public: const string& predicate, const Raul::Atom& value) = 0; - // Requests // + // Requests virtual void ping() = 0; -- cgit v1.2.1