Add AutomationControl::set_value_unchecked() and AutomationControl::writable() and...
[ardour.git] / libs / ardour / ardour / pan_controllable.h
index 9abbec42ab82277fe9af408549410d514390a245..ff00d8119fc7feb84d45385415d59ba5e8f71c42 100644 (file)
@@ -38,12 +38,17 @@ class LIBARDOUR_API PanControllable : public AutomationControl
 {
 public:
        PanControllable (Session& s, std::string name, Pannable* o, Evoral::Parameter param)
-               : AutomationControl (s, param, boost::shared_ptr<AutomationList>(new AutomationList(param)), name)
+               : AutomationControl (s,
+                                    param,
+                                    ParameterDescriptor(param),
+                                    boost::shared_ptr<AutomationList>(new AutomationList(param)),
+                                    name)
                , owner (o)
        {}
 
        double lower () const;
        void set_value (double);
+       void set_value_unchecked (double);
 
 private:
        Pannable* owner;