Remove internal ports.

git-svn-id: svn://localhost/ardour2/branches/3.0@4525 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
Carl Hetherington 2009-02-11 00:58:24 +00:00
parent fe4e98a729
commit d469cc3e3a
19 changed files with 123 additions and 847 deletions

View file

@ -46,10 +46,9 @@ using namespace PBD;
IOProcessor::IOProcessor (Session& s, const string& name, Placement p,
int input_min, int input_max,
int output_min, int output_max,
DataType dtype,
bool public_ports)
DataType dtype)
: Processor(s, name, p)
, _io (new IO(s, name, input_min, input_max, output_min, output_max, dtype, public_ports))
, _io (new IO(s, name, input_min, input_max, output_min, output_max, dtype))
{
_active = false;
_sort_key = 0;