summaryrefslogtreecommitdiff
path: root/libs/ardour/ardour/bundle.h
diff options
context:
space:
mode:
Diffstat (limited to 'libs/ardour/ardour/bundle.h')
-rw-r--r--libs/ardour/ardour/bundle.h24
1 files changed, 24 insertions, 0 deletions
diff --git a/libs/ardour/ardour/bundle.h b/libs/ardour/ardour/bundle.h
index ac5928fc34..7e5cac6bf1 100644
--- a/libs/ardour/ardour/bundle.h
+++ b/libs/ardour/ardour/bundle.h
@@ -147,6 +147,30 @@ class Bundle : public sigc::trackable
bool _ports_are_inputs;
};
+
+
+struct BundleChannel
+{
+ BundleChannel () : channel (0) {}
+
+ BundleChannel (boost::shared_ptr<ARDOUR::Bundle> b, uint32_t c)
+ : bundle (b), channel (c) {}
+
+ bool operator== (BundleChannel const& other) const {
+ return bundle == other.bundle && channel == other.channel;
+ }
+
+ bool operator!= (BundleChannel const& other) const {
+ return bundle != other.bundle || channel != other.channel;
+ }
+
+ boost::shared_ptr<ARDOUR::Bundle> bundle;
+ uint32_t channel;
+};
+
+
+
+
}
#endif /* __ardour_bundle_h__ */