summaryrefslogtreecommitdiffstats
path: root/src/engine/NodeImpl.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/engine/NodeImpl.cpp')
-rw-r--r--src/engine/NodeImpl.cpp6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/engine/NodeImpl.cpp b/src/engine/NodeImpl.cpp
index a4e52ece..fc08c8de 100644
--- a/src/engine/NodeImpl.cpp
+++ b/src/engine/NodeImpl.cpp
@@ -33,6 +33,7 @@
using namespace std;
namespace Ingen {
+namespace Engine {
NodeImpl::NodeImpl(PluginImpl* plugin, const Raul::Symbol& symbol, bool polyphonic, PatchImpl* parent, SampleRate srate)
: GraphObjectImpl(plugin->uris(), parent, symbol)
@@ -67,13 +68,13 @@ NodeImpl::~NodeImpl()
free(_valid_ports);
}
-Shared::Port*
+Port*
NodeImpl::port(uint32_t index) const
{
return (*_ports)[index];
}
-const Shared::Plugin*
+const Plugin*
NodeImpl::plugin() const
{
return _plugin;
@@ -258,5 +259,6 @@ NodeImpl::set_port_buffer(uint32_t voice, uint32_t port_num,
<< " buffer " << buf << " offset " << offset << std::endl;*/
}
+} // namespace Engine
} // namespace Ingen