From b621b28fce4942fb4505854482cddec1545f5c0f Mon Sep 17 00:00:00 2001 From: Paul Davis Date: Tue, 17 Jul 2012 13:59:46 +0000 Subject: make it possible to (and actually do) name insert and send ports as "return" and "send" rather than "in" and "out" (#5012) git-svn-id: svn://localhost/ardour2/branches/3.0@13052 d708f5d6-7413-0410-9779-e7cbd77b26cf --- libs/ardour/ardour/io.h | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'libs/ardour/ardour/io.h') diff --git a/libs/ardour/ardour/io.h b/libs/ardour/ardour/io.h index 1ba27a7449..d38aa88576 100644 --- a/libs/ardour/ardour/io.h +++ b/libs/ardour/ardour/io.h @@ -74,8 +74,8 @@ class IO : public SessionObject, public Latent Output }; - IO (Session&, const std::string& name, Direction, DataType default_type = DataType::AUDIO); - IO (Session&, const XMLNode&, DataType default_type = DataType::AUDIO); + IO (Session&, const std::string& name, Direction, DataType default_type = DataType::AUDIO, bool sendish = false); + IO (Session&, const XMLNode&, DataType default_type = DataType::AUDIO, bool sendish = false); virtual ~IO(); @@ -207,6 +207,7 @@ class IO : public SessionObject, public Latent Direction _direction; DataType _default_type; bool _active; + bool _sendish; private: int connecting_became_legal (); -- cgit v1.2.3