Add mono switch to mixer strips (mantis 1068)
[ardour.git] / gtk2_ardour / track_selection.h
index 363492eafd3cc8d285283b7b83c4de898febfef7..38032d6de304aa4a5e039fb8943b4a6802d94b65 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
 #define __ardour_gtk_track_selection_h__
 
 #include <list>
-#include "shared_ptrs.h"
 
 class TimeAxisView;
 
-class TrackSelection : public std::list<TimeAxisViewPtr>
+class TrackSelection : public std::list<TimeAxisView*>
 {
 public:
        TrackSelection () {}
-               
-       TrackSelection (std::list<TimeAxisViewPtr> const &);
-       std::list<TimeAxisViewPtr> add (std::list<TimeAxisViewPtr> const &);
-       bool contains (TimeAxisViewConstPtr) const;
+
+       TrackSelection (std::list<TimeAxisView*> const &);
+       std::list<TimeAxisView*> add (std::list<TimeAxisView*> const &);
+       bool contains (TimeAxisView const *) const;
 };
 
 #endif /* __ardour_gtk_track_selection_h__ */