summaryrefslogtreecommitdiff
path: root/gtk2_ardour/port_group.h
diff options
context:
space:
mode:
authorCarl Hetherington <carl@carlh.net>2009-06-09 23:43:20 +0000
committerCarl Hetherington <carl@carlh.net>2009-06-09 23:43:20 +0000
commitd039e2e80ff2179aef7430c53ca41e43297d9065 (patch)
tree17e5faab29f1d0a8b6e4cd3da242fc9df3ec5244 /gtk2_ardour/port_group.h
parent9f8dc1f145203168290750cfeb89491d9f37c48e (diff)
Fix up port matrix for new Route / IO arrangements.
git-svn-id: svn://localhost/ardour2/branches/3.0@5143 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'gtk2_ardour/port_group.h')
-rw-r--r--gtk2_ardour/port_group.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/gtk2_ardour/port_group.h b/gtk2_ardour/port_group.h
index 707cc04966..5abe0c9bcd 100644
--- a/gtk2_ardour/port_group.h
+++ b/gtk2_ardour/port_group.h
@@ -22,6 +22,7 @@
#include <vector>
#include <string>
+#include <set>
#include <gtkmm/widget.h>
#include <gtkmm/checkbutton.h>
#include <boost/shared_ptr.hpp>
@@ -32,6 +33,7 @@ namespace ARDOUR {
class Session;
class Bundle;
class Processor;
+ class IO;
}
class PortMatrix;
@@ -121,7 +123,7 @@ class PortGroupList : public sigc::trackable
std::string common_prefix_before (std::vector<std::string> const &, std::string const &) const;
void emit_changed ();
boost::shared_ptr<ARDOUR::Bundle> make_bundle_from_ports (std::vector<std::string> const &, bool) const;
- void maybe_add_processor_to_bundle (boost::weak_ptr<ARDOUR::Processor>, boost::shared_ptr<RouteBundle>, bool);
+ void maybe_add_processor_to_bundle (boost::weak_ptr<ARDOUR::Processor>, boost::shared_ptr<RouteBundle>, bool, std::set<boost::shared_ptr<ARDOUR::IO> > &);
ARDOUR::DataType _type;
mutable ARDOUR::BundleList _bundles;