mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-07 15:25:01 +01:00
10 lines
223 B
C++
10 lines
223 B
C++
#ifndef __ardour_gtk_track_selection_h__
|
|
#define __ardour_gtk_track_selection_h__
|
|
|
|
#include <list>
|
|
|
|
class TimeAxisView;
|
|
|
|
struct TrackSelection : public list<TimeAxisView*> {};
|
|
|
|
#endif /* __ardour_gtk_track_selection_h__ */
|