Fixes to bundle manager to make it vaguely usable.
[ardour.git] / libs / ardour / ardour / playlist_factory.h
index a28e2611d9a72478e40bbd55354ee30f095ef61c..239fa49a0412d065b9da6035c791bd3e35ba73c5 100644 (file)
@@ -31,9 +31,9 @@ class Session;
 class PlaylistFactory {
 
   public:
-       static sigc::signal<void,boost::shared_ptr<Playlist> > PlaylistCreated;
+       static sigc::signal<void,boost::shared_ptr<Playlist>, bool> PlaylistCreated;
 
-       static boost::shared_ptr<Playlist> create (Session&, const XMLNode&, bool hidden = false);
+       static boost::shared_ptr<Playlist> create (Session&, const XMLNode&, bool hidden = false, bool unused = false);
        static boost::shared_ptr<Playlist> create (DataType type, 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);