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-0.0.4
[lilypond.git]
/
scores.cc
blob
cb06b0074ff8f637d7e984b8198f113742dd12ff
1
#include
"main.hh"
2
#include
"score.hh"
3
4
static
svec
<
Score
*>
sv
;
5
6
static
String outfn
=
"lelie.uit"
;
7
8
void
9
do_scores
()
10
{
11
for
(
int
i
=
0
;
i
<
sv
.
sz
();
i
++) {
12
sv
[
i
]->
process
();
13
sv
[
i
]->
output
(
outfn
);
14
}
15
}
16
17
void
18
add_score
(
Score
*
s
)
19
{
20
sv
.
add
(
s
);
21
}
22
23
24
void
25
set_default_output
(
String s
)
26
{
27
outfn
=
s
;
28
}
29