Fix wrongly exposed set_parameter methods on PluginInsert.
[ardour.git] / libs / ardour / ardour / plugin_insert.h
index 25a9e52e88f81f3dc0ace87b0ae740c72d8c9e08..d83b41d1e0d3a67f50b5516e8923d6c4491b94a7 100644 (file)
@@ -74,11 +74,6 @@ class PluginInsert : public Processor
 
        bool is_generator() const;
 
-       void  set_parameter (Evoral::Parameter param, float val);
-       float get_parameter (Evoral::Parameter param);
-
-       float default_parameter_value (const Evoral::Parameter& param);
-       
        struct PluginControl : public AutomationControl 
        {
            PluginControl (PluginInsert* p, const Evoral::Parameter &param,
@@ -111,6 +106,11 @@ class PluginInsert : public Processor
 
        void parameter_changed (Evoral::Parameter, float);
        
+       void  set_parameter (Evoral::Parameter param, float val);
+       float get_parameter (Evoral::Parameter param);
+
+       float default_parameter_value (const Evoral::Parameter& param);
+       
        std::vector<boost::shared_ptr<Plugin> > _plugins;
        
        void automation_run (BufferSet& bufs, nframes_t nframes, nframes_t offset);