add a new Profile flag for livetrax

This commit is contained in:
Paul Davis 2024-03-20 06:48:54 -06:00
parent 16ed245977
commit 125b0f9432

View file

@ -32,6 +32,7 @@ public:
SmallScreen, SmallScreen,
SinglePackage, SinglePackage,
Mixbus, Mixbus,
LiveTrax,
LastElement, LastElement,
}; };
@ -44,6 +45,9 @@ public:
bool get_mixbus() const { return bits[Mixbus]; } bool get_mixbus() const { return bits[Mixbus]; }
void set_mixbus() { bits[Mixbus] = true; } void set_mixbus() { bits[Mixbus] = true; }
bool get_livetrax() const { return bits[LiveTrax]; }
void set_livetrax() { bits[LiveTrax] = true; }
void set_single_package () { bits[SinglePackage] = true; } void set_single_package () { bits[SinglePackage] = true; }
bool get_single_package () const { return bits[SinglePackage]; } bool get_single_package () const { return bits[SinglePackage]; }