diff options
author | David Robillard <d@drobilla.net> | 2006-06-19 00:42:15 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2006-06-19 00:42:15 +0000 |
commit | 4adc4f4a2b4f57f43affcd48f2c01c60f471b20a (patch) | |
tree | 48b36e2df65257905fde0141f5301347ca643f24 /src/libs/engine/InputPort.h | |
parent | b1b4335b767f34b41903a85040cd07dabe0f33ec (diff) | |
download | ingen-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/InputPort.h')
-rw-r--r-- | src/libs/engine/InputPort.h | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/src/libs/engine/InputPort.h b/src/libs/engine/InputPort.h index 79f03329..8c677b26 100644 --- a/src/libs/engine/InputPort.h +++ b/src/libs/engine/InputPort.h @@ -20,7 +20,7 @@ #include <string> #include <cstdlib> #include <cassert> -#include "PortBase.h" +#include "TypedPort.h" #include "List.h" #include "MidiMessage.h" using std::string; @@ -44,7 +44,7 @@ class Node; * \ingroup engine */ template <typename T> -class InputPort : public PortBase<T> +class InputPort : public TypedPort<T> { public: InputPort(Node* parent, const string& name, size_t index, size_t poly, DataType type, size_t buffer_size); @@ -75,13 +75,13 @@ private: List<ConnectionBase<T>*> m_connections; // This is just stupid... - using PortBase<T>::m_is_tied; - using PortBase<T>::m_tied_port; - using PortBase<T>::m_buffers; - using PortBase<T>::_poly; - using PortBase<T>::_index; - using PortBase<T>::_buffer_size; - using PortBase<T>::m_fixed_buffers; + using TypedPort<T>::m_is_tied; + using TypedPort<T>::m_tied_port; + using TypedPort<T>::m_buffers; + using TypedPort<T>::_poly; + using TypedPort<T>::_index; + using TypedPort<T>::_buffer_size; + using TypedPort<T>::m_fixed_buffers; }; |