add a new Controllable::NotAutomable flag
[ardour.git] / libs / pbd / pbd / controllable.h
index 11ba979198e114e49803d83f283f2250f37137b3..d2296c59aeddd415c001a38ba558e1f4048fe4da 100644 (file)
@@ -54,7 +54,9 @@ class LIBPBD_API Controllable : public PBD::StatefulDestructible {
        enum Flag {
                Toggle = 0x1,
                GainLike = 0x2,
-               RealTime = 0x4
+               RealTime = 0x4,
+               NotAutomatable = 0x8,
+               
        };
 
        Controllable (const std::string& name, Flag f = Flag (0));