#include "staff.hh"
#include "musicalrequest.hh"
#include "staffwalker.hh"
-#include "stcol.hh"
-#include "sccol.hh"
+#include "staffcolumn.hh"
+#include "scorecolumn.hh"
#include "debug.hh"
#include "timedescription.hh"
#include "commandrequest.hh"
} else if (tr_l->barcheck() && time_.whole_in_measure_) {
warning( "Barcheck failed", tr_l->defined_ch_c_l_ );
} else if (tr_l->cadenza()) {
- time_.set_cadenza(tr_l->cadenza()->on_b);
+ time_.set_cadenza(tr_l->cadenza()->on_b_);
} else if (tr_l->measuregrouping()) {
*default_grouping = parse_grouping(
tr_l->measuregrouping()->beat_i_arr_,
--- /dev/null
+/*
+ walkregs.cc -- implement Walker_registers
+
+ source file of the LilyPond music typesetter
+
+ (c) 1997 Han-Wen Nienhuys <hanwen@stack.nl>
+*/
+
+#include "clefreg.hh"
+#include "localkeyreg.hh"
+#include "keyreg.hh"
+#include "meterreg.hh"
+#include "barreg.hh"
+#include "walkregs.hh"
+
+Walker_registers::Walker_registers(Complex_walker *w)
+{
+ add( new Bar_register(w));
+ add( new Meter_register(w));
+ add( new Clef_register(w));
+ add( new Key_register(w));
+ add( new Local_key_register(w));
+}