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