]> git.donarmstrong.com Git - lilypond.git/blob - lily/include/rod.hh
uhh
[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--2002 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 "direction.hh"
15 #include "drul-array.hh"
16
17 struct Rod
18 {
19   Drul_array <Item*> item_l_drul_;
20   Real distance_f_;
21
22   /**
23     translate the rod so as to refer to Paper_columns  
24    */
25   void columnize ();
26   
27   void add_to_cols ();
28
29   Rod ();
30 };
31
32 #endif /* ROD_HH */
33