Merged with trunk R1283.
[ardour.git] / gtk2_ardour / playlist_selection.h
1 #ifndef __ardour_gtk_playlist_selection_h__
2 #define __ardour_gtk_playlist_selection_h__
3
4 #include <list>
5 #include <boost/shared_ptr.hpp>
6
7 namespace ARDOUR {
8         class Playlist;
9 }
10
11 struct PlaylistSelection : list<boost::shared_ptr<ARDOUR::Playlist> > {};
12
13 #endif /* __ardour_gtk_playlist_selection_h__ */