summaryrefslogtreecommitdiff
path: root/gtk2_ardour/track_selection.h
diff options
context:
space:
mode:
authorCarl Hetherington <carl@carlh.net>2009-07-09 17:58:13 +0000
committerCarl Hetherington <carl@carlh.net>2009-07-09 17:58:13 +0000
commit402cc384ced6cb152c8abe4294009fe0de0a6dea (patch)
treef01db6b412cb8e2d3c69fa123fd615c229ee47d3 /gtk2_ardour/track_selection.h
parentcc351b97a986fca48a6b3b631a292bf24efc5e41 (diff)
Back out big shared_ptr change. Moving to a branch. Apologies all.
git-svn-id: svn://localhost/ardour2/branches/3.0@5343 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'gtk2_ardour/track_selection.h')
-rw-r--r--gtk2_ardour/track_selection.h9
1 files changed, 4 insertions, 5 deletions
diff --git a/gtk2_ardour/track_selection.h b/gtk2_ardour/track_selection.h
index 363492eafd..2a4cc1b288 100644
--- a/gtk2_ardour/track_selection.h
+++ b/gtk2_ardour/track_selection.h
@@ -21,18 +21,17 @@
#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__ */