mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-16 03:36:32 +01:00
Update Plugin API, extend IOPortDescription c'tor
This commit is contained in:
parent
1a50b6b8ea
commit
e9c90bc1b2
1 changed files with 4 additions and 4 deletions
|
|
@ -123,11 +123,11 @@ public:
|
|||
|
||||
struct LIBARDOUR_API IOPortDescription {
|
||||
public:
|
||||
IOPortDescription (const std::string& n)
|
||||
IOPortDescription (const std::string& n, bool sc = false, std::string gn = "", uint32_t gc = 0)
|
||||
: name (n)
|
||||
, is_sidechain (false)
|
||||
, group_name (n)
|
||||
, group_channel (0)
|
||||
, is_sidechain (sc)
|
||||
, group_name (gn.empty () ? n : gn)
|
||||
, group_channel (gc)
|
||||
{ }
|
||||
|
||||
IOPortDescription (const IOPortDescription& other)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue