]> git.donarmstrong.com Git - lilypond.git/blob - lily/include/script-column.hh
release: 1.3.55
[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--2000 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 public:
18   Script_column(SCM);
19   void add_staff_sided (Item*);
20 protected:
21   virtual void before_line_breaking ();
22 };
23
24
25 #endif /* Script_COLUMN_HH */
26
27