From 2db1897709eba0e80677bd09e8444e7320e15120 Mon Sep 17 00:00:00 2001 From: David Robillard Date: Mon, 19 Jun 2006 06:17:49 +0000 Subject: 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 --- src/libs/engine/TypedPort.h | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) (limited to 'src/libs/engine/TypedPort.h') diff --git a/src/libs/engine/TypedPort.h b/src/libs/engine/TypedPort.h index e2ccaff4..332741a6 100644 --- a/src/libs/engine/TypedPort.h +++ b/src/libs/engine/TypedPort.h @@ -14,8 +14,8 @@ * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -#ifndef PORTBASE_H -#define PORTBASE_H +#ifndef TYPEDPORT_H +#define TYPEDPORT_H #include #include "types.h" @@ -52,8 +52,8 @@ public: virtual void prepare_buffers(size_t nframes); virtual void clear_buffers(); - TypedPort* tied_port() const { return m_tied_port; } - void untie() { m_is_tied = false; m_tied_port = NULL; } + //TypedPort* tied_port() const { return m_tied_port; } + //void untie() { m_is_tied = false; m_tied_port = NULL; } /** Used by drivers to prevent port from changing buffers */ void fixed_buffers(bool b) { m_fixed_buffers = b; } @@ -68,9 +68,9 @@ protected: void allocate_buffers(); - bool m_fixed_buffers; - bool m_is_tied; - TypedPort* m_tied_port; + bool m_fixed_buffers; + //bool m_is_tied; + //TypedPort* m_tied_port; Array*> m_buffers; }; @@ -81,4 +81,4 @@ template class TypedPort; } // namespace Om -#endif // PORTBASE_H +#endif // TYPEDPORT_H -- cgit v1.2.1