Remove unused punch+preroll API
[ardour.git] / libs / ardour / ardour / mute_control.h
index 399b708d4351803debd4136bf76df0ac6a1f1f28..494b5543427337c428179d4c18631a25ff887e33 100644 (file)
@@ -35,7 +35,7 @@ class Muteable;
 
 class LIBARDOUR_API MuteControl : public SlavableAutomationControl
 {
-  public:
+public:
        MuteControl (Session& session, std::string const& name, Muteable&);
 
        double get_value () const;
@@ -68,16 +68,16 @@ class LIBARDOUR_API MuteControl : public SlavableAutomationControl
        void set_mute_points (MuteMaster::MutePoint);
        MuteMaster::MutePoint mute_points () const;
 
-       void automation_run (framepos_t start, pframes_t nframes);
+       void automation_run (samplepos_t start, pframes_t nframes);
 
-  protected:
-       void master_changed (bool, PBD::Controllable::GroupControlDisposition, boost::shared_ptr<AutomationControl>);
+protected:
+       bool handle_master_change (boost::shared_ptr<AutomationControl>);
        void actually_set_value (double, PBD::Controllable::GroupControlDisposition group_override);
 
        void pre_remove_master (boost::shared_ptr<AutomationControl>);
        void post_add_master (boost::shared_ptr<AutomationControl>);
 
-  private:
+private:
        Muteable& _muteable;
 };