X-Git-Url: https://main.carlh.net/gitweb/?a=blobdiff_plain;f=gtk2_ardour%2Ftime_selection.h;h=61e635e8bed4b20705e803883aa120487815d45a;hb=04db4c788c8bf5070eb13b9165277ea81ab50070;hp=aaa307400d59ec6b1ba02779657b44f3dc0f7559;hpb=4297071b3f7360b17d81ef9cf36b8d75d46d2818;p=ardour.git diff --git a/gtk2_ardour/time_selection.h b/gtk2_ardour/time_selection.h index aaa307400d..61e635e8be 100644 --- a/gtk2_ardour/time_selection.h +++ b/gtk2_ardour/time_selection.h @@ -1,5 +1,5 @@ /* - Copyright (C) 2000-2007 Paul Davis + Copyright (C) 2000-2007 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 @@ -22,36 +22,21 @@ #include #include "ardour/types.h" -#include "shared_ptrs.h" namespace ARDOUR { class RouteGroup; } -class TimeAxisView; - -struct TimeSelection : public std::list { - - /* if (track == 0 && group == 0) then it applies to all - tracks. - - if (track != 0 && group == 0) then it applies just to - that track. - - if (group != 0) then it applies to all tracks in - the group. - */ - - TimeAxisViewPtr track; - ARDOUR::RouteGroup* group; - - ARDOUR::AudioRange& operator[](uint32_t); - - nframes_t start(); - nframes_t end_frame(); - nframes_t length(); - - bool consolidate (); +class TimeSelection : public std::list +{ +public: + ARDOUR::AudioRange& operator[](uint32_t); + + ARDOUR::framepos_t start(); + ARDOUR::framepos_t end_frame(); + ARDOUR::framepos_t length(); + + bool consolidate (); };