Reformat.
[ardour.git] / libs / ardour / ardour / filter.h
index 697e19539e757e87c8061a6fa71587cb5ba3fd1b..9d69a513accfc310050903613521a04106dbf0ca 100644 (file)
@@ -28,13 +28,14 @@ namespace ARDOUR {
 
 class Region;
 class Session;
+class Progress;        
 
 class Filter {
 
   public:
        virtual ~Filter() {}
 
-       virtual int run (boost::shared_ptr<ARDOUR::Region>) = 0;
+       virtual int run (boost::shared_ptr<ARDOUR::Region>, Progress* progress = 0) = 0;
        std::vector<boost::shared_ptr<ARDOUR::Region> > results;
 
   protected: