repo.or.cz
/
lilypond.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
lilypond-1.3.129
[lilypond.git]
/
src
/
linestaff.cc
blob
f9430e9b7338f4aecc2fea8f51fc62d880cc1dd7
1
#include
"linestaff.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
(
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