Speed up AFL/PFL changes for large sessions
[ardour.git] / gtk2_ardour / time_selection.h
index aaa307400d59ec6b1ba02779657b44f3dc0f7559..413cb75de6ee6bc30819f28656554ff98488dfed 100644 (file)
@@ -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
 
 #include <list>
 #include "ardour/types.h"
-#include "shared_ptrs.h"
 
 namespace ARDOUR {
        class RouteGroup;
 }
 
-class TimeAxisView;
+class TimeSelection : public std::list<ARDOUR::AudioRange>
+{
+public:
+       ARDOUR::AudioRange& operator[](uint32_t);
 
-struct TimeSelection : public std::list<ARDOUR::AudioRange> {
-    
-    /* if (track == 0 && group == 0) then it applies to all
-       tracks.
+        ARDOUR::framepos_t start();
+        ARDOUR::framepos_t end_frame();
+        ARDOUR::framepos_t length();
 
-       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 ();
+       bool consolidate ();
 };