mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-06 14:54:56 +01:00
add a new Profile flag for livetrax
This commit is contained in:
parent
16ed245977
commit
125b0f9432
1 changed files with 4 additions and 0 deletions
|
|
@ -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]; }
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue