From b7f645cbe633cf1235c5bc28df7f93254b3a15f0 Mon Sep 17 00:00:00 2001 From: Paul Davis Date: Thu, 14 Dec 2006 14:37:29 +0000 Subject: add missing file; remove another VST debug hack git-svn-id: svn://localhost/ardour2/trunk@1211 d708f5d6-7413-0410-9779-e7cbd77b26cf --- libs/ardour/ardour/playlist_factory.h | 25 +++++++++++++++++++++++++ libs/fst/fstinfofile.c | 2 -- 2 files changed, 25 insertions(+), 2 deletions(-) create mode 100644 libs/ardour/ardour/playlist_factory.h diff --git a/libs/ardour/ardour/playlist_factory.h b/libs/ardour/ardour/playlist_factory.h new file mode 100644 index 0000000000..dcf9ab62d6 --- /dev/null +++ b/libs/ardour/ardour/playlist_factory.h @@ -0,0 +1,25 @@ +#ifndef __ardour_playlist_factory_h__ +#define __ardour_playlist_factory_h__ + +#include + +class XMLNode; + +namespace ARDOUR { + +class Session; + +class PlaylistFactory { + + public: + static sigc::signal > PlaylistCreated; + + static boost::shared_ptr create (Session&, const XMLNode&, bool hidden = false); + static boost::shared_ptr create (Session&, string name, bool hidden = false); + static boost::shared_ptr create (boost::shared_ptr, string name, bool hidden = false); + static boost::shared_ptr create (boost::shared_ptr, nframes_t start, nframes_t cnt, string name, bool hidden = false); +}; + +} + +#endif /* __ardour_playlist_factory_h__ */ diff --git a/libs/fst/fstinfofile.c b/libs/fst/fstinfofile.c index 043e4348a7..7b0c69d015 100644 --- a/libs/fst/fstinfofile.c +++ b/libs/fst/fstinfofile.c @@ -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; } -- cgit v1.2.3