consolidate BundleAdded/Remove signal
[ardour.git] / libs / ardour / ardour / profile.h
index 9346138e002c0eac45f95a00971a69a0413a52f8..1ea7e2b03648a881879a13fcfbb509f99193ec9e 100644 (file)
@@ -33,7 +33,9 @@ public:
                SmallScreen,
                SAE,
                SinglePackage,
-               LastElement
+               Trx,
+               Mixbus,
+               LastElement,
        };
 
     RuntimeProfile() { bits.resize (LastElement); }
@@ -45,6 +47,12 @@ public:
     void set_sae () { bits[SAE] = true; }
     bool get_sae () const { return bits[SAE]; }
 
+    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]; }