summaryrefslogtreecommitdiffstats
path: root/src/engine/events/SetPortValue.hpp
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2010-02-14 01:27:46 +0000
committerDavid Robillard <d@drobilla.net>2010-02-14 01:27:46 +0000
commit49dcb26a2133e5067a1e63b2a5633444c08bb85a (patch)
treeabf99ee05c65c581029e9139ec8de004f35c450d /src/engine/events/SetPortValue.hpp
parent16cc07ce3c37ca663ec40c2dcea3302de69966b1 (diff)
downloadingen-49dcb26a2133e5067a1e63b2a5633444c08bb85a.tar.gz
ingen-49dcb26a2133e5067a1e63b2a5633444c08bb85a.tar.bz2
ingen-49dcb26a2133e5067a1e63b2a5633444c08bb85a.zip
Remove voice specific control setting.
git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@2445 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src/engine/events/SetPortValue.hpp')
-rw-r--r--src/engine/events/SetPortValue.hpp11
1 files changed, 0 insertions, 11 deletions
diff --git a/src/engine/events/SetPortValue.hpp b/src/engine/events/SetPortValue.hpp
index d7a3d7ae..5d4265c7 100644
--- a/src/engine/events/SetPortValue.hpp
+++ b/src/engine/events/SetPortValue.hpp
@@ -50,14 +50,6 @@ public:
SetPortValue(Engine& engine,
SharedPtr<Request> request,
- bool queued,
- SampleCount timestamp,
- uint32_t voice_num,
- const Raul::Path& port_path,
- const Raul::Atom& value);
-
- SetPortValue(Engine& engine,
- SharedPtr<Request> request,
SampleCount timestamp,
PortImpl* port,
const Raul::Atom& value);
@@ -73,15 +65,12 @@ private:
NO_ERROR,
PORT_NOT_FOUND,
NO_SPACE,
- ILLEGAL_VOICE,
TYPE_MISMATCH
};
void apply(Context& context);
bool _queued;
- bool _omni;
- uint32_t _voice_num;
const Raul::Path _port_path;
const Raul::Atom _value;
PortImpl* _port;