ardour/gtk2_ardour/track_selection.cc
Carl Hetherington 402cc384ce 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
2009-07-09 17:58:13 +00:00

32 lines
546 B
C++
Executable File

#include <algorithm>
#include "track_selection.h"
using namespace std;
TrackSelection::TrackSelection (list<TimeAxisView*> const &t)
: list<TimeAxisView*> (t)
{
}
list<TimeAxisView*>
TrackSelection::add (list<TimeAxisView*> const & t)
{
list<TimeAxisView*> added;
for (TrackSelection::const_iterator i = t.begin(); i != t.end(); ++i) {
if (!contains (*i)) {
added.push_back (*i);
push_back (*i);
}
}
return added;
}
bool
TrackSelection::contains (TimeAxisView const * t) const
{
return find (begin(), end(), t) != end();
}