Fix uninitialised variable and remove bind of shared_ptr to a slot.
[ardour.git] / libs / ardour / ardour / filter.h
index 0e4c6b3de037472a6c4c4ffac7117e766d173d35..697e19539e757e87c8061a6fa71587cb5ba3fd1b 100644 (file)
@@ -1,5 +1,5 @@
 /*
-    Copyright (C) 2007 Paul Davis 
+    Copyright (C) 2007 Paul Davis
     Author: Dave Robillard
 
     This program is free software; you can redistribute it and/or modify
@@ -22,7 +22,7 @@
 #define __ardour_filter_h__
 
 #include <vector>
-#include <ardour/region.h>
+#include "ardour/region.h"
 
 namespace ARDOUR {
 
@@ -40,9 +40,9 @@ class Filter {
   protected:
        Filter (ARDOUR::Session& s) : session(s) {}
 
-       int make_new_sources (boost::shared_ptr<ARDOUR::Region>, ARDOUR::SourceList&);
-       int finish (boost::shared_ptr<ARDOUR::Region>, ARDOUR::SourceList&);
-       
+       int make_new_sources (boost::shared_ptr<ARDOUR::Region>, ARDOUR::SourceList&, std::string suffix = "");
+       int finish (boost::shared_ptr<ARDOUR::Region>, ARDOUR::SourceList&, std::string region_name = "");
+
        ARDOUR::Session& session;
 };