]> git.donarmstrong.com Git - lilypond.git/blob - src/lyricstaff.cc
release: 0.0.34
[lilypond.git] / src / lyricstaff.cc
1 #include "musicalrequest.hh"
2 #include "voice.hh"
3 #include "staffwalker.hh"
4 #include "debug.hh"
5 #include "staff.hh"
6 #include "lyricstaff.hh"
7 #include "lyricwalker.hh"
8 #include "pscore.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 }