X-Git-Url: https://main.carlh.net/gitweb/?a=blobdiff_plain;f=libs%2Fardour%2Fardour%2Fprofile.h;h=1ea7e2b03648a881879a13fcfbb509f99193ec9e;hb=0582221;hp=56d9ff62be78af77839c827f01afb8af4468d5a2;hpb=23e7cf10191270d70357ccf0ed9294f020c7b7ab;p=ardour.git diff --git a/libs/ardour/ardour/profile.h b/libs/ardour/ardour/profile.h index 56d9ff62be..1ea7e2b036 100644 --- a/libs/ardour/ardour/profile.h +++ b/libs/ardour/ardour/profile.h @@ -34,6 +34,7 @@ public: SAE, SinglePackage, Trx, + Mixbus, LastElement, }; @@ -49,6 +50,9 @@ public: bool get_trx() const { return bits[Trx]; } void set_trx() { bits[Trx] = true; } + bool get_mixbus() const { return bits[Mixbus]; } + void set_mixbus() { bits[Mixbus] = true; } + void set_single_package () { bits[SinglePackage] = true; } bool get_single_package () const { return bits[SinglePackage]; }