mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-10 08:36:32 +01:00
add new element to ARDOUR::RuntimeProfile
This commit is contained in:
parent
4652671a88
commit
01af11c25c
1 changed files with 5 additions and 1 deletions
|
|
@ -33,7 +33,8 @@ public:
|
|||
SmallScreen,
|
||||
SAE,
|
||||
SinglePackage,
|
||||
LastElement
|
||||
Tracks,
|
||||
LastElement,
|
||||
};
|
||||
|
||||
RuntimeProfile() { bits.resize (LastElement); }
|
||||
|
|
@ -45,6 +46,9 @@ 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; }
|
||||
|
||||
void set_single_package () { bits[SinglePackage] = true; }
|
||||
bool get_single_package () const { return bits[SinglePackage]; }
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue