Remove most using declarations from header files.
[ardour.git] / libs / ardour / ardour / playlist_factory.h
index e0533526c94e671a1e18778c61841222bb5080b6..46e27d9b870da5030110a6ed0eedf4896a586044 100644 (file)
@@ -34,9 +34,9 @@ class PlaylistFactory {
        static sigc::signal<void,boost::shared_ptr<Playlist>, bool> PlaylistCreated;
 
        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);
+       static boost::shared_ptr<Playlist> create (DataType type, Session&, std::string name, bool hidden = false);
+       static boost::shared_ptr<Playlist> create (boost::shared_ptr<const Playlist>, std::string name, bool hidden = false);
+       static boost::shared_ptr<Playlist> create (boost::shared_ptr<const Playlist>, nframes_t start, nframes_t cnt, std::string name, bool hidden = false);
 };
 
 }