summaryrefslogtreecommitdiff
path: root/libs/ardour/ardour/route.h
diff options
context:
space:
mode:
Diffstat (limited to 'libs/ardour/ardour/route.h')
-rw-r--r--libs/ardour/ardour/route.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/libs/ardour/ardour/route.h b/libs/ardour/ardour/route.h
index 9bdd2cbca5..8f3cae0db1 100644
--- a/libs/ardour/ardour/route.h
+++ b/libs/ardour/ardour/route.h
@@ -127,6 +127,10 @@ class Route : public IO
void set_phase_invert (bool yn, void *src);
bool phase_invert() const { return _phase_invert; }
+
+ void set_denormal_protection (bool yn, void *src);
+ bool denormal_protection() const { return _denormal_protection; }
+
void set_edit_group (RouteGroup *, void *);
void drop_edit_group (void *);
@@ -258,6 +262,7 @@ class Route : public IO
bool _soloed : 1;
bool _solo_safe : 1;
bool _phase_invert : 1;
+ bool _denormal_protection : 1;
bool _recordable : 1;
bool _active : 1;
bool _mute_affects_pre_fader : 1;