summaryrefslogtreecommitdiffstats
path: root/src/libs/engine/OutputPort.h
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2006-06-19 00:42:15 +0000
committerDavid Robillard <d@drobilla.net>2006-06-19 00:42:15 +0000
commit4adc4f4a2b4f57f43affcd48f2c01c60f471b20a (patch)
tree48b36e2df65257905fde0141f5301347ca643f24 /src/libs/engine/OutputPort.h
parentb1b4335b767f34b41903a85040cd07dabe0f33ec (diff)
downloadingen-4adc4f4a2b4f57f43affcd48f2c01c60f471b20a.tar.gz
ingen-4adc4f4a2b4f57f43affcd48f2c01c60f471b20a.tar.bz2
ingen-4adc4f4a2b4f57f43affcd48f2c01c60f471b20a.zip
Renamed PortBase to TypedPort
git-svn-id: http://svn.drobilla.net/lad/grauph@60 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src/libs/engine/OutputPort.h')
-rw-r--r--src/libs/engine/OutputPort.h8
1 files changed, 4 insertions, 4 deletions
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 <string>
#include <cstdlib>
-#include "PortBase.h"
+#include "TypedPort.h"
#include "types.h"
namespace Om {
@@ -39,7 +39,7 @@ template <typename T> class InputPort;
* \ingroup engine
*/
template <typename T>
-class OutputPort : public PortBase<T>
+class OutputPort : public TypedPort<T>
{
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<T>& operator=(const OutputPort<T>&);
- using PortBase<T>::m_is_tied;
- using PortBase<T>::m_tied_port;
+ using TypedPort<T>::m_is_tied;
+ using TypedPort<T>::m_tied_port;
};