X-Git-Url: https://main.carlh.net/gitweb/?a=blobdiff_plain;f=libs%2Fardour%2Fardour%2Fprofile.h;h=cc3ae4f60f586bd2d1d6aae61d1ad037bf8976e0;hb=f485cfa324717f57b9f820f43f1b53307b96a8b9;hp=9346138e002c0eac45f95a00971a69a0413a52f8;hpb=658bb3ccd43658de18fbd43cd91a8e66650e27a7;p=ardour.git diff --git a/libs/ardour/ardour/profile.h b/libs/ardour/ardour/profile.h index 9346138e00..cc3ae4f60f 100644 --- a/libs/ardour/ardour/profile.h +++ b/libs/ardour/ardour/profile.h @@ -31,9 +31,10 @@ class LIBARDOUR_API RuntimeProfile { public: enum Element { SmallScreen, - SAE, SinglePackage, - LastElement + Trx, + Mixbus, + LastElement, }; RuntimeProfile() { bits.resize (LastElement); } @@ -42,8 +43,11 @@ public: void set_small_screen() { bits[SmallScreen] = true; } bool get_small_screen() const { return bits[SmallScreen]; } - 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]; }