summaryrefslogtreecommitdiffstats
path: root/src/engine/InputPort.cpp
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2009-05-27 17:42:51 +0000
committerDavid Robillard <d@drobilla.net>2009-05-27 17:42:51 +0000
commitc11ecf0fd10641218326ae384e80413ba3cdf46c (patch)
tree52ea61f88167a2e7eacc8fa5ff0ee39ee25b2e7e /src/engine/InputPort.cpp
parent8feac4ed0e764c677d4d208377e956c6db94d2dd (diff)
downloadingen-c11ecf0fd10641218326ae384e80413ba3cdf46c.tar.gz
ingen-c11ecf0fd10641218326ae384e80413ba3cdf46c.tar.bz2
ingen-c11ecf0fd10641218326ae384e80413ba3cdf46c.zip
Remove 'new_patch', 'new_node', and 'new_port' from interface in favour of generic 'put'.
git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@2011 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src/engine/InputPort.cpp')
-rw-r--r--src/engine/InputPort.cpp8
1 files changed, 6 insertions, 2 deletions
diff --git a/src/engine/InputPort.cpp b/src/engine/InputPort.cpp
index c8b373c1..9b10580f 100644
--- a/src/engine/InputPort.cpp
+++ b/src/engine/InputPort.cpp
@@ -19,11 +19,12 @@
#include <iostream>
#include <cstdlib>
#include <cassert>
+#include "interface/Patch.hpp"
#include "AudioBuffer.hpp"
-#include "EventBuffer.hpp"
#include "ConnectionImpl.hpp"
-#include "OutputPort.hpp"
+#include "EventBuffer.hpp"
#include "NodeImpl.hpp"
+#include "OutputPort.hpp"
#include "ProcessContext.hpp"
#include "util.hpp"
@@ -31,6 +32,7 @@ using namespace std;
namespace Ingen {
+namespace Shared { class Patch; }
using namespace Shared;
InputPort::InputPort(NodeImpl* parent,
@@ -42,6 +44,8 @@ InputPort::InputPort(NodeImpl* parent,
size_t buffer_size)
: PortImpl(parent, name, index, poly, type, value, buffer_size)
{
+ if (!dynamic_cast<Patch*>(parent))
+ add_property("rdf:type", Raul::Atom(Raul::Atom::URI, "lv2:InputPort"));
}