Add a dedicated export method to MidiRegion
[ardour.git] / libs / ardour / ardour / rb_effect.h
index bde04223357c567be9ce5f285562fd7f1ee0c388..6c10278fb3a794ba391ebc991d990107782f4b26 100644 (file)
@@ -1,5 +1,5 @@
 /*
-    Copyright (C) 2007 Paul Davis 
+    Copyright (C) 2007 Paul Davis
 
     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
 #ifndef __ardour_rbeffect_h__
 #define __ardour_rbeffect_h__
 
-#include <ardour/audiofilter.h>
+#include "ardour/filter.h"
+#include "ardour/timefx_request.h"
 
 namespace ARDOUR {
 
 class AudioRegion;
 
-class RBEffect : public Filter {
+class LIBARDOUR_API RBEffect : public Filter {
   public:
        RBEffect (ARDOUR::Session&, TimeFXRequest&);
        ~RBEffect ();
 
-       int run (boost::shared_ptr<ARDOUR::Region>);
+       int run (boost::shared_ptr<ARDOUR::Region>, Progress* progress = 0);
 
   private:
        TimeFXRequest& tsr;