From 8ba6bb943889bfdd58cf4a971a152041c1199cfe Mon Sep 17 00:00:00 2001 From: David Robillard Date: Mon, 18 Apr 2011 12:47:15 +0000 Subject: Put engine code in new Ingen::Engine namespace. Put core interfaces in Ingen namespace (not Ingen::Shared). git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@3159 a436a847-0d15-0410-975c-d299462d15a1 --- src/engine/InputPort.cpp | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) (limited to 'src/engine/InputPort.cpp') diff --git a/src/engine/InputPort.cpp b/src/engine/InputPort.cpp index 7fb603b4..03855275 100644 --- a/src/engine/InputPort.cpp +++ b/src/engine/InputPort.cpp @@ -34,9 +34,7 @@ using namespace std; namespace Ingen { - -namespace Shared { class Patch; } -using namespace Shared; +namespace Engine { InputPort::InputPort(BufferFactory& bufs, NodeImpl* parent, @@ -49,7 +47,7 @@ InputPort::InputPort(BufferFactory& bufs, : PortImpl(bufs, parent, symbol, index, poly, type, value, buffer_size) , _num_connections(0) { - const LV2URIMap& uris = bufs.uris(); + const Ingen::Shared::LV2URIMap& uris = bufs.uris(); if (!dynamic_cast(parent)) add_property(uris.rdf_type, uris.lv2_InputPort); @@ -224,5 +222,6 @@ InputPort::direct_connect() const && !_connections.front()->must_queue(); } +} // namespace Engine } // namespace Ingen -- cgit v1.2.1