diff options
author | David Robillard <d@drobilla.net> | 2006-06-19 06:17:49 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2006-06-19 06:17:49 +0000 |
commit | 2db1897709eba0e80677bd09e8444e7320e15120 (patch) | |
tree | 8062b5ede632c1c084a2c3b43bbd1a3d9991734e /src/libs/engine/OutputPort.h | |
parent | 4adc4f4a2b4f57f43affcd48f2c01c60f471b20a (diff) | |
download | ingen-2db1897709eba0e80677bd09e8444e7320e15120.tar.gz ingen-2db1897709eba0e80677bd09e8444e7320e15120.tar.bz2 ingen-2db1897709eba0e80677bd09e8444e7320e15120.zip |
Connecting of patch ports internally (seemingly anyway, data not flowing yet)
git-svn-id: http://svn.drobilla.net/lad/grauph@61 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src/libs/engine/OutputPort.h')
-rw-r--r-- | src/libs/engine/OutputPort.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/libs/engine/OutputPort.h b/src/libs/engine/OutputPort.h index 269a4524..25a03325 100644 --- a/src/libs/engine/OutputPort.h +++ b/src/libs/engine/OutputPort.h @@ -39,7 +39,7 @@ template <typename T> class InputPort; * \ingroup engine */ template <typename T> -class OutputPort : public TypedPort<T> +class OutputPort : virtual 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 TypedPort<T>::m_is_tied; - using TypedPort<T>::m_tied_port; + //using TypedPort<T>::m_is_tied; + //using TypedPort<T>::m_tied_port; }; |