Add ARDOUR::ladspa_search_path function to get LADSPA module directories
[ardour.git] / libs / ardour / ardour / quantize.h
index bf046e6c501ac127c7b2d67c8a62c18366f46a0e..e56927767eda121cbeea18341dee8b1ceb5d3763 100644 (file)
@@ -30,13 +30,14 @@ class Session;
 
 class Quantize : public MidiOperator {
 public:
-       Quantize (ARDOUR::Session&, QuantizeType type,
-                       bool snap_start, bool snap_end,
+       Quantize (ARDOUR::Session&, bool snap_start, bool snap_end,
                        double start_grid, double end_grid,
                        float strength, float swing, float threshold);
        ~Quantize ();
 
-       Command* operator() (boost::shared_ptr<ARDOUR::MidiModel>, std::vector<Evoral::Sequence<Evoral::MusicalTime>::Notes>&);
+       Command* operator() (boost::shared_ptr<ARDOUR::MidiModel>,
+                            double position,
+                            std::vector<Evoral::Sequence<Evoral::MusicalTime>::Notes>&);
        std::string name() const { return std::string ("quantize"); }
 
 private: