X-Git-Url: https://main.carlh.net/gitweb/?a=blobdiff_plain;f=libs%2Fardour%2Fardour%2Fprofile.h;h=1ea7e2b03648a881879a13fcfbb509f99193ec9e;hb=0582221;hp=0b3a05ca685dec7200ea6855370fa36408d214f0;hpb=01af11c25c6a12d021b6129b3c0157048a88db36;p=ardour.git diff --git a/libs/ardour/ardour/profile.h b/libs/ardour/ardour/profile.h index 0b3a05ca68..1ea7e2b036 100644 --- a/libs/ardour/ardour/profile.h +++ b/libs/ardour/ardour/profile.h @@ -33,7 +33,8 @@ public: SmallScreen, SAE, SinglePackage, - Tracks, + Trx, + Mixbus, LastElement, }; @@ -46,8 +47,11 @@ public: void set_sae () { bits[SAE] = true; } bool get_sae () const { return bits[SAE]; } - bool get_tracks() const { return bits[Tracks]; } - void set_tracks() { bits[Tracks] = true; } + 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]; }