]> git.donarmstrong.com Git - lilypond.git/blob - lily/include/rod.hh
* configure.in: Test for and accept lmodern if EC fonts not found.
[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--2004 Han-Wen Nienhuys <hanwen@cs.uu.nl>
7   
8  */
9
10 #ifndef ROD_HH
11 #define ROD_HH
12
13 #include "lily-proto.hh"
14 #include "drul-array.hh"
15
16 struct Rod
17 {
18   Drul_array <Item*> item_l_drul_;
19   Real distance_;
20
21   /**
22     translate the rod so as to refer to Paper_columns  
23    */
24   void columnize ();
25   
26   void add_to_cols ();
27
28   Rod ();
29 };
30
31 #endif /* ROD_HH */
32