402cc384ce
git-svn-id: svn://localhost/ardour2/branches/3.0@5343 d708f5d6-7413-0410-9779-e7cbd77b26cf
32 lines
546 B
C++
Executable File
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();
|
|
}
|