13
0

add missing file; remove another VST debug hack

git-svn-id: svn://localhost/ardour2/trunk@1211 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
Paul Davis 2006-12-14 14:37:29 +00:00
parent f21094937a
commit b7f645cbe6
2 changed files with 25 additions and 2 deletions

View File

@ -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__ */

View 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;
}