]> git.donarmstrong.com Git - lilypond.git/blob - lily/complex-staff.cc
release: 0.0.46.jcn1
[lilypond.git] / lily / complex-staff.cc
1 #include "complex-staff.hh"
2 #include "complex-walker.hh"
3 #include "p-score.hh"
4
5 /** Aside from putting fields right
6  */
7 void
8 Complex_staff::set_output(PScore* pscore_l )
9 {
10     pstaff_l_ = new PStaff(pscore_l);
11     pscore_l_ = pscore_l;
12     pscore_l_->add(pstaff_l_);
13 }
14
15
16 Staff_walker * 
17 Complex_staff::get_walker_p()
18 {
19     return new Complex_walker(this);
20 }