Add ARDOUR::ladspa_search_path function to get LADSPA module directories
[ardour.git] / libs / ardour / ardour / quantize.h
index b02335811cced45d74f1dbc311b6af012bdc8f18..e56927767eda121cbeea18341dee8b1ceb5d3763 100644 (file)
@@ -1,6 +1,6 @@
 /*
     Copyright (C) 2007-2009 Paul Davis
-       Author: Dave Robillard
+    Author: David Robillard
 
     This program is free software; you can redistribute it and/or modify
     it under the terms of the GNU General Public License as published by
@@ -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: