X-Git-Url: https://main.carlh.net/gitweb/?a=blobdiff_plain;f=libs%2Fardour%2Fardour%2Fprofile.h;h=1ea7e2b03648a881879a13fcfbb509f99193ec9e;hb=0582221;hp=9346138e002c0eac45f95a00971a69a0413a52f8;hpb=e7c47747286c16aa575456b07120e1e8e8271bd5;p=ardour.git diff --git a/libs/ardour/ardour/profile.h b/libs/ardour/ardour/profile.h index 9346138e00..1ea7e2b036 100644 --- a/libs/ardour/ardour/profile.h +++ b/libs/ardour/ardour/profile.h @@ -33,7 +33,9 @@ public: SmallScreen, SAE, SinglePackage, - LastElement + Trx, + Mixbus, + LastElement, }; RuntimeProfile() { bits.resize (LastElement); } @@ -45,6 +47,12 @@ public: void set_sae () { bits[SAE] = true; } bool get_sae () const { return bits[SAE]; } + 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]; }