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.5.10
[lilypond.git]
/
lily
/
include
/
stem-info.hh
blob
8230ef9018a6ecb3efab4266712a89dda3d8c9e9
1
/*
2
stem-info.hh -- declare Stem_info
3
4
source file of the GNU LilyPond music typesetter
5
6
(c) 1997--2001 Jan Nieuwenhuizen <janneke@gnu.org>
7
*/
8
9
10
#ifndef STEM_INFO_HH
11
#define STEM_INFO_HH
12
13
#include
"real.hh"
14
15
struct
Stem_info
16
{
17
Real idealy_f_
;
18
19
// fixme: we're an Interval!
20
Real miny_f_
;
21
Real maxy_f_
;
22
};
23
24
#endif
// STEM_INFO_HH