]> git.donarmstrong.com Git - lilypond.git/blob - src/linepstaff.cc
release: 0.0.29
[lilypond.git] / src / linepstaff.cc
1 #include "linepstaff.hh"
2 #include "molecule.hh"
3 #include "symbol.hh"
4 #include "lookup.hh"
5 #include "dimen.hh"
6 #include "paper.hh"
7 #include "pscore.hh"
8
9 Linestaff::Linestaff(int l, PScore *s)
10     : PStaff(s)
11 {
12     nolines = l;
13 }
14
15 void
16 Linestaff::brew_molecule_p(Real width)
17 {
18     Atom a  = pscore_l_->paper_l_->lookup_p_->linestaff(nolines,width);
19     stafsym_p_ = new Molecule(a);
20 }
21
22
23
24
25
26
27