Translations from Petter, now in the correct branch. Now only for €19.99.
[ardour.git] / gtk2_ardour / export_region_dialog.h
index e8afe97d6b188416ffb86f98e635f93b669843b0..95c721bed0599743c70027165aaead96befad925 100644 (file)
 class ExportRegionDialog : public ExportDialog
 {
   public:
-       ExportRegionDialog (PublicEditor&, ARDOUR::Region*);
+       ExportRegionDialog (PublicEditor&, boost::shared_ptr<ARDOUR::Region>);
  
        static void* _export_region_thread (void *);
        void export_region ();
 
   protected:
-       void export_audio_data();
+       void export_data();
   
   private:
-       ARDOUR::AudioRegion* audio_region;
+       boost::shared_ptr<ARDOUR::Region> region;
 };