From 3593abd69807674d9949134f1ad2b7f5a9f69dc2 Mon Sep 17 00:00:00 2001 From: David Robillard Date: Sun, 28 Sep 2008 22:04:26 +0000 Subject: Merge weird split set_port_value / set_port_value_immediately API (whether a command is queued or 'immediate' is a property of the engine interface, really). git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@1532 a436a847-0d15-0410-975c-d299462d15a1 --- src/common/interface/EngineInterface.hpp | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'src/common') diff --git a/src/common/interface/EngineInterface.hpp b/src/common/interface/EngineInterface.hpp index a9b2a0c1..9a835784 100644 --- a/src/common/interface/EngineInterface.hpp +++ b/src/common/interface/EngineInterface.hpp @@ -75,12 +75,12 @@ public: virtual void disconnect_all(const std::string& parent_patch_path, const std::string& path) = 0; - virtual void set_port_value_immediate(const std::string& port_path, - const Raul::Atom& value) = 0; + virtual void set_port_value(const std::string& port_path, + const Raul::Atom& value) = 0; - virtual void set_voice_value_immediate(const std::string& port_path, - uint32_t voice, - const Raul::Atom& value) = 0; + virtual void set_voice_value(const std::string& port_path, + uint32_t voice, + const Raul::Atom& value) = 0; virtual void set_program(const std::string& node_path, uint32_t bank, -- cgit v1.2.1