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.1.14
[lilypond.git]
/
hdr
/
colhpos.hh
blob
5398417ab134202630b22b9f3a5c3dc4950c574c
1
/*
2
colhpos.hh -- part of LilyPond
3
4
(c) 1997 Han-Wen Nienhuys <hanwen@stack.nl>
5
*/
6
7
#ifndef COLHPOS_HH
8
#define COLHPOS_HH
9
#include
"varray.hh"
10
#include
"proto.hh"
11
12
typedef
Array
<
PCol
*>
Line_of_cols
;
13
14
struct
Col_hpositions
{
15
Line_of_cols cols
;
16
Array
<
Real
>
config
;
17
Real energy
;
18
19
/* ************** */
20
void
OK
()
const
;
21
22
Col_hpositions
();
23
void
add
(
PCol
*
c
);
24
void
print
()
const
;
25
};
26
27
28
#endif
// COLHPOS_HH
29