diff --git a/libs/ardour/ardour/profile.h b/libs/ardour/ardour/profile.h index a3d2f9eb94..33f6c05180 100644 --- a/libs/ardour/ardour/profile.h +++ b/libs/ardour/ardour/profile.h @@ -32,6 +32,7 @@ public: SmallScreen, SinglePackage, Mixbus, + LiveTrax, LastElement, }; @@ -44,6 +45,9 @@ public: bool get_mixbus() const { return bits[Mixbus]; } 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; } bool get_single_package () const { return bits[SinglePackage]; }