add missing file; remove another VST debug hack
authorPaul Davis <paul@linuxaudiosystems.com>
Thu, 14 Dec 2006 14:37:29 +0000 (14:37 +0000)
committerPaul Davis <paul@linuxaudiosystems.com>
Thu, 14 Dec 2006 14:37:29 +0000 (14:37 +0000)
git-svn-id: svn://localhost/ardour2/trunk@1211 d708f5d6-7413-0410-9779-e7cbd77b26cf

libs/ardour/ardour/playlist_factory.h [new file with mode: 0644]
libs/fst/fstinfofile.c

diff --git a/libs/ardour/ardour/playlist_factory.h b/libs/ardour/ardour/playlist_factory.h
new file mode 100644 (file)
index 0000000..dcf9ab6
--- /dev/null
@@ -0,0 +1,25 @@
+#ifndef __ardour_playlist_factory_h__
+#define __ardour_playlist_factory_h__
+
+#include <ardour/playlist.h>
+
+class XMLNode;
+
+namespace ARDOUR {
+
+class Session;
+
+class PlaylistFactory {
+
+  public:
+       static sigc::signal<void,boost::shared_ptr<Playlist> > PlaylistCreated;
+
+       static boost::shared_ptr<Playlist> create (Session&, const XMLNode&, bool hidden = false);
+       static boost::shared_ptr<Playlist> create (Session&, string name, bool hidden = false);
+       static boost::shared_ptr<Playlist> create (boost::shared_ptr<const Playlist>, string name, bool hidden = false);
+       static boost::shared_ptr<Playlist> create (boost::shared_ptr<const Playlist>, nframes_t start, nframes_t cnt, string name, bool hidden = false);
+};
+
+}
+
+#endif /* __ardour_playlist_factory_h__  */
index 043e4348a7f7b8c6fc15ea781b01b077be84ee24..7b0c69d01576eff30298f32e34930defffdb6645 100644 (file)
@@ -227,8 +227,6 @@ FSTInfo *fst_get_info( char *dllpath ) {
        FSTInfo *info;
        char *fstpath;
 
-       fprintf (stderr, "no valid FST file, direct load plugin\n");
-
        if( !(h = fst_load( dllpath )) ) {
                return NULL;
        }