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
flower-1.0.2
[lilypond.git]
/
command.cc
blob
ebf993d239e1a7eeba8a087f93633a25707d9097
1
2
#include
"string.hh"
3
#include
"command.hh"
4
5
6
Command
*
7
get_bar_command
(
Real w
)
8
{
9
Command
*
c
=
new
Command
;
10
c
->
when
=
w
;
11
c
->
code
=
TYPESET
;
12
c
->
args
.
add
(
"BAR"
);
13
c
->
args
.
add
(
"|"
);
14
return
c
;
15
}