From 4adc4f4a2b4f57f43affcd48f2c01c60f471b20a Mon Sep 17 00:00:00 2001 From: David Robillard Date: Mon, 19 Jun 2006 00:42:15 +0000 Subject: Renamed PortBase to TypedPort git-svn-id: http://svn.drobilla.net/lad/grauph@60 a436a847-0d15-0410-975c-d299462d15a1 --- src/libs/engine/OutputPort.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'src/libs/engine/OutputPort.h') diff --git a/src/libs/engine/OutputPort.h b/src/libs/engine/OutputPort.h index 4c9b3da4..269a4524 100644 --- a/src/libs/engine/OutputPort.h +++ b/src/libs/engine/OutputPort.h @@ -19,7 +19,7 @@ #include #include -#include "PortBase.h" +#include "TypedPort.h" #include "types.h" namespace Om { @@ -39,7 +39,7 @@ template class InputPort; * \ingroup engine */ template -class OutputPort : public PortBase +class OutputPort : public TypedPort { public: OutputPort(Node* parent, const string& name, size_t index, size_t poly, DataType type, size_t buffer_size); @@ -55,8 +55,8 @@ private: OutputPort(const OutputPort& copy); OutputPort& operator=(const OutputPort&); - using PortBase::m_is_tied; - using PortBase::m_tied_port; + using TypedPort::m_is_tied; + using TypedPort::m_tied_port; }; -- cgit v1.2.1