shared_ptr<Region> fixes
[ardour.git] / gtk2_ardour / route_selection.h
1 #ifndef __ardour_gtk_route_selection_h__
2 #define __ardour_gtk_route_selection_h__
3
4
5 #include <boost/shared_ptr.hpp>
6 #include <list>
7
8 namespace ARDOUR {
9         class Route;
10 }
11
12 struct RouteSelection : std::list<boost::shared_ptr<ARDOUR::Route> > {};
13
14 #endif /* __ardour_gtk_route_selection_h__ */