lilypond-0.0.77.jcn1
[lilypond.git] / src / lyricstaff.cc
blobabefcd2048203cd63db417bddea8c78bacf63fe3
1 #include "musicalrequest.hh"
2 #include "voice.hh"
3 #include "staff-walker.hh"
4 #include "debug.hh"
5 #include "staff.hh"
6 #include "lyricstaff.hh"
7 #include "lyricwalker.hh"
8 #include "pscore.hh"
10 void
11 Lyric_staff::set_output(PScore*pscore_l)
13 pstaff_l_ = new PStaff(pscore_l);
14 pscore_l_ = pscore_l;
15 pscore_l_->add(pstaff_l_);
18 Staff_walker*
19 Lyric_staff::get_walker_p()
21 return new Lyric_walker(this);