]> git.donarmstrong.com Git - lilypond.git/blob - lily/include/script-column.hh
patch::: 1.3.9.hwn2
[lilypond.git] / lily / include / script-column.hh
1 /*   
2   g-script-column.hh -- declare Script_column
3   
4   source file of the GNU LilyPond music typesetter
5   
6   (c) 1999 Han-Wen Nienhuys <hanwen@cs.uu.nl>
7   
8  */
9
10 #ifndef Script_COLUMN_HH
11 #define Script_COLUMN_HH
12
13 #include "item.hh"
14
15 class Script_column : public Item
16 {
17   /**
18      Array of objects that are placed by staffsides
19    */
20   Link_array<Item> staff_sided_item_l_arr_;
21 public:
22   void add_staff_sided (Item*);
23 protected:
24   virtual void do_pre_processing ();
25 };
26
27
28 #endif /* Script_COLUMN_HH */
29
30