struct Score_column {
/// indirection to column
- PCol * pcol;
+ PCol * pcol_;
/// length of notes/rests in this column
svec<Real> durations;
return sgn(c1.when - c2.when);
}
void set_breakable() {
- pcol->set_breakable();
+ pcol_->set_breakable();
}
bool used();
void print() const;
Score_column::Score_column(Real w)
{
when = w;
- pcol = new PCol(0);
+ pcol_ = new PCol(0);
musical = false;
}
bool
Score_column::used() {
- return pcol->used;
+ return pcol_->used;
}
void
for (int i=0; i < durations.sz(); i++)
mtor << durations[i] << " ";
mtor << "]\n";
- pcol->print();
+ pcol_->print();
mtor << "}\n";
#endif
}