Don't add auditioner and click to MIDI connection port matrices.
[ardour.git] / gtk2_ardour / track_selection.h
index 53f59e67cf98393a1e6ce18b288beb5bdc5dfa28..2a4cc1b2887124848da1e40b5edb13bf3917c7a9 100644 (file)
 
 class TimeAxisView;
 
-struct TrackSelection : public list<TimeAxisView*> {};
+class TrackSelection : public std::list<TimeAxisView*>
+{
+public:
+       TrackSelection () {}
+               
+       TrackSelection (std::list<TimeAxisView*> const &);
+       std::list<TimeAxisView*> add (std::list<TimeAxisView*> const &);
+       bool contains (TimeAxisView const *) const;
+};
 
 #endif /* __ardour_gtk_track_selection_h__ */