2 #include "selections.h"
5 Selections::Selections(EDL *edl, Track *track)
11 Selections::~Selections()
16 Selections& Selections::operator=(Selections& selections)
18 while(last) delete last;
19 for(Selection *current = (Selection*)selections.first; current; current = (Selection*)NEXT)
21 Selection *new_selection = (Selection*)append(new Selection(edl, this));
22 *new_selection = *current;