2005-09-25 14:42:24 -04:00
|
|
|
#ifndef __ardour_gtk_route_selection_h__
|
|
|
|
#define __ardour_gtk_route_selection_h__
|
|
|
|
|
2006-07-27 12:52:14 -04:00
|
|
|
|
|
|
|
#include <boost/shared_ptr.hpp>
|
2005-09-25 14:42:24 -04:00
|
|
|
#include <list>
|
|
|
|
|
|
|
|
namespace ARDOUR {
|
|
|
|
class Route;
|
|
|
|
}
|
|
|
|
|
2006-07-27 12:52:14 -04:00
|
|
|
struct RouteSelection : std::list<boost::shared_ptr<ARDOUR::Route> > {};
|
2005-09-25 14:42:24 -04:00
|
|
|
|
|
|
|
#endif /* __ardour_gtk_route_selection_h__ */
|