summaryrefslogtreecommitdiff
path: root/libs/ardour/ardour/profile.h
diff options
context:
space:
mode:
Diffstat (limited to 'libs/ardour/ardour/profile.h')
-rw-r--r--libs/ardour/ardour/profile.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/libs/ardour/ardour/profile.h b/libs/ardour/ardour/profile.h
index 9346138e00..0b3a05ca68 100644
--- a/libs/ardour/ardour/profile.h
+++ b/libs/ardour/ardour/profile.h
@@ -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]; }