]> git.donarmstrong.com Git - lilypond.git/blob - lily/lyric-staff.cc
partial: 0.0.46.jcn1.hanjan
[lilypond.git] / lily / lyric-staff.cc
1 #include "musical-request.hh"
2 #include "voice.hh"
3 #include "staff-walker.hh"
4 #include "debug.hh"
5 #include "staff.hh"
6 #include "lyric-staff.hh"
7 #include "lyric-walker.hh"
8 #include "p-score.hh"
9
10 void
11 Lyric_staff::set_output(PScore*pscore_l)
12 {
13     pstaff_l_ = new PStaff(pscore_l);
14     pscore_l_ = pscore_l;
15     pscore_l_->add(pstaff_l_);
16 }
17
18 Staff_walker*
19 Lyric_staff::get_walker_p()
20 {
21     return new Lyric_walker(this);
22 }