summaryrefslogtreecommitdiff
path: root/gtk2_ardour/io_selector.h
diff options
context:
space:
mode:
authorCarl Hetherington <carl@carlh.net>2007-10-12 14:49:07 +0000
committerCarl Hetherington <carl@carlh.net>2007-10-12 14:49:07 +0000
commit7dcc66a7e5e68d69bda04fc6a7462d3f2140f6d5 (patch)
treea98cf9e1f0f26d3ffe9fe00eccfd513eebde99c4 /gtk2_ardour/io_selector.h
parent50c68c6d0cd14525a48ea8f15e779fa92a1069c5 (diff)
Better support for MIDI tracks in the IO selector.
git-svn-id: svn://localhost/ardour2/trunk@2547 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'gtk2_ardour/io_selector.h')
-rw-r--r--gtk2_ardour/io_selector.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/gtk2_ardour/io_selector.h b/gtk2_ardour/io_selector.h
index 4e40b356cd..3025f1d267 100644
--- a/gtk2_ardour/io_selector.h
+++ b/gtk2_ardour/io_selector.h
@@ -33,10 +33,13 @@ namespace ARDOUR {
class PortInsert;
}
-struct PortGroup
+class PortGroup
{
+ public:
PortGroup (std::string const & n, std::string const & p) : name (n), prefix (p) {}
+ void add (std::string const & p);
+
std::string name;
std::string prefix;
std::vector<std::string> ports;