summaryrefslogtreecommitdiff
path: root/libs/ardour/ardour/delivery.h
diff options
context:
space:
mode:
authorLen Ovens <len@ovenwerks.net>2018-10-19 08:49:30 -0700
committerLen Ovens <len@ovenwerks.net>2018-10-19 08:51:29 -0700
commit777fe3c68fef42d8fee79432830787bcebdfcb59 (patch)
tree4b0d87eea0d882eab29a04256b482fb17dad23b1 /libs/ardour/ardour/delivery.h
parent070f370e40d6257bd5ab6248999701f25af36973 (diff)
Add personal monitor sends
Diffstat (limited to 'libs/ardour/ardour/delivery.h')
-rw-r--r--libs/ardour/ardour/delivery.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/libs/ardour/ardour/delivery.h b/libs/ardour/ardour/delivery.h
index 451d7bdd0c..88db428600 100644
--- a/libs/ardour/ardour/delivery.h
+++ b/libs/ardour/ardour/delivery.h
@@ -48,7 +48,9 @@ public:
/* listen - internal send used only to deliver to control/monitor bus */
Listen = 0x8,
/* aux - internal send used to deliver to any bus, by user request */
- Aux = 0x10
+ Aux = 0x10,
+ /* personal - internal send used only to deliver to a personal monitor bus */
+ Personal = 0x20
};
static bool role_requires_output_ports (Role r) { return r == Main || r == Send || r == Insert; }