2005-09-25 14:42:24 -04:00
|
|
|
#ifndef __ardour_gtk_playlist_selection_h__
|
|
|
|
#define __ardour_gtk_playlist_selection_h__
|
|
|
|
|
|
|
|
#include <list>
|
2006-12-14 09:15:43 -05:00
|
|
|
#include <boost/shared_ptr.hpp>
|
2005-09-25 14:42:24 -04:00
|
|
|
|
|
|
|
namespace ARDOUR {
|
|
|
|
class Playlist;
|
|
|
|
}
|
|
|
|
|
2006-12-14 09:15:43 -05:00
|
|
|
struct PlaylistSelection : list<boost::shared_ptr<ARDOUR::Playlist> > {};
|
2005-09-25 14:42:24 -04:00
|
|
|
|
|
|
|
#endif /* __ardour_gtk_playlist_selection_h__ */
|