]> git.donarmstrong.com Git - lilypond.git/blob - lily/include/rod.hh
Run `make grand-replace'.
[lilypond.git] / lily / include / rod.hh
1 /*
2   rod.hh -- declare Rod, Column_rod
3
4   source file of the GNU LilyPond music typesetter
5
6   (c) 1998--2008 Han-Wen Nienhuys <hanwen@xs4all.nl>
7 */
8
9 #ifndef ROD_HH
10 #define ROD_HH
11
12 #include "lily-proto.hh"
13 #include "drul-array.hh"
14
15 struct Rod
16 {
17   Drul_array<Item *> item_drul_;
18   Real distance_;
19
20   void columnize ();
21   void add_to_cols ();
22   Rod ();
23 };
24
25 #endif /* ROD_HH */
26