summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--libs/ardour/ardour/bundle.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/libs/ardour/ardour/bundle.h b/libs/ardour/ardour/bundle.h
index 88f095dd33..cf035133ea 100644
--- a/libs/ardour/ardour/bundle.h
+++ b/libs/ardour/ardour/bundle.h
@@ -52,8 +52,11 @@ class LIBARDOUR_API Bundle : public PBD::ScopedConnectionList
typedef std::vector<std::string> PortList;
struct Channel {
+ /* Constructor with no port name(s) */
Channel (std::string n, DataType t) : name (n), type (t) {}
+ /* Constructor with list of port names */
Channel (std::string n, DataType t, PortList p) : name (n), type (t), ports (p) {}
+ /* Constructor with a port name */
Channel (std::string n, DataType t, std::string const & p) : name (n), type (t) {
ports.push_back (p);
}