summaryrefslogtreecommitdiff
path: root/libs/ardour/ardour/profile.h
diff options
context:
space:
mode:
authorBen Loftis <ben@harrisonconsoles.com>2014-07-09 15:11:58 -0500
committerBen Loftis <ben@harrisonconsoles.com>2014-07-09 15:12:05 -0500
commit9f4a00fa898845ba177955f115fa2f96d62a8643 (patch)
treed84bb8d76b1a9615456913e8c4b7e981d535bf64 /libs/ardour/ardour/profile.h
parenta32dbfa1976e8c67ada3adb3f9576d8b87843b71 (diff)
add mixbus profile which removes the tearoffs
Diffstat (limited to 'libs/ardour/ardour/profile.h')
-rw-r--r--libs/ardour/ardour/profile.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/libs/ardour/ardour/profile.h b/libs/ardour/ardour/profile.h
index 56d9ff62be..1ea7e2b036 100644
--- a/libs/ardour/ardour/profile.h
+++ b/libs/ardour/ardour/profile.h
@@ -34,6 +34,7 @@ public:
SAE,
SinglePackage,
Trx,
+ Mixbus,
LastElement,
};
@@ -49,6 +50,9 @@ public:
bool get_trx() const { return bits[Trx]; }
void set_trx() { bits[Trx] = true; }
+ bool get_mixbus() const { return bits[Mixbus]; }
+ void set_mixbus() { bits[Mixbus] = true; }
+
void set_single_package () { bits[SinglePackage] = true; }
bool get_single_package () const { return bits[SinglePackage]; }