From 313af960a340f8539214d53252e3186fe3dc8f40 Mon Sep 17 00:00:00 2001 From: David Robillard Date: Wed, 24 Feb 2010 23:37:26 +0000 Subject: Merge NodeBase and NodeImpl. git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@2486 a436a847-0d15-0410-975c-d299462d15a1 --- src/engine/internals/Delay.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'src/engine/internals/Delay.cpp') diff --git a/src/engine/internals/Delay.cpp b/src/engine/internals/Delay.cpp index 202ba616..7910713f 100644 --- a/src/engine/internals/Delay.cpp +++ b/src/engine/internals/Delay.cpp @@ -54,7 +54,7 @@ static InternalPlugin note_plugin(NS_INTERNALS "Delay", "delay"); InternalPlugin& DelayNode::internal_plugin() { return note_plugin; } DelayNode::DelayNode(BufferFactory& bufs, const string& path, bool polyphonic, PatchImpl* parent, SampleRate srate) - : NodeBase(¬e_plugin, path, polyphonic, parent, srate) + : NodeImpl(¬e_plugin, path, polyphonic, parent, srate) , _buffer(0) , _buffer_length(0) , _buffer_mask(0) @@ -97,7 +97,7 @@ DelayNode::~DelayNode() void DelayNode::activate(BufferFactory& bufs) { - NodeBase::activate(bufs); + NodeImpl::activate(bufs); const SampleCount min_size = MAX_DELAY_SECONDS * _srate; // Smallest power of two larger than min_size @@ -142,7 +142,7 @@ DelayNode::process(ProcessContext& context) AudioBuffer* const in_buf = (AudioBuffer*)_in_port->buffer(0).get(); AudioBuffer* const out_buf = (AudioBuffer*)_out_port->buffer(0).get(); - NodeBase::pre_process(context); + NodeImpl::pre_process(context); DelayNode* plugin_data = this; @@ -199,7 +199,7 @@ DelayNode::process(ProcessContext& context) _write_phase = write_phase; - NodeBase::post_process(context); + NodeImpl::post_process(context); } -- cgit v1.2.1