X-Git-Url: https://main.carlh.net/gitweb/?a=blobdiff_plain;f=gtk2_ardour%2Ftrack_selection.h;h=4fb11873692e6e4ec2748f37302f3bb4adc57b4a;hb=dadee4622d15218e0190b72797897fbb7b247711;hp=53f59e67cf98393a1e6ce18b288beb5bdc5dfa28;hpb=2e8f80e37a7d20deb3f138cd72c26f8c6de9d1ab;p=ardour.git diff --git a/gtk2_ardour/track_selection.h b/gtk2_ardour/track_selection.h index 53f59e67cf..4fb1187369 100644 --- a/gtk2_ardour/track_selection.h +++ b/gtk2_ardour/track_selection.h @@ -1,5 +1,5 @@ /* - Copyright (C) 2000-2007 Paul Davis + Copyright (C) 2000-2009 Paul Davis This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -20,10 +20,22 @@ #ifndef __ardour_gtk_track_selection_h__ #define __ardour_gtk_track_selection_h__ -#include +#include "track_view_list.h" -class TimeAxisView; +class PublicEditor; -struct TrackSelection : public list {}; +class TrackSelection : public TrackViewList +{ +public: + TrackSelection (PublicEditor const * e) : _editor (e) {} + TrackSelection (PublicEditor const *, TrackViewList const &); + + virtual ~TrackSelection (); + + TrackViewList add (TrackViewList const &); + +private: + PublicEditor const * _editor; +}; #endif /* __ardour_gtk_track_selection_h__ */