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.3
[lilypond.git]
/
symbol.cc
blob
66771dc90aaf4c43ffe751d9ad54c7bda6110566
1
#include
"symbol.hh"
2
Symbol
::
Symbol
()
3
:
dim
(
Interval
(
0
,
0
),
Interval
(
0
,
0
))
4
{
5
tex
=
"
\\
unknown"
;
6
}
7
Symbol
::
Symbol
(
String s
,
Box b
)
8
:
tex
(
s
),
dim
(
b
)
9
{
10
}
11