]> git.donarmstrong.com Git - lilypond.git/blob - lily/include/script-column.hh
release: 0.0.67
[lilypond.git] / lily / include / script-column.hh
1 /*
2   script-column.hh -- declare Script_column
3
4   source file of the GNU LilyPond music typesetter
5
6   (c) 1997 Han-Wen Nienhuys <hanwen@stack.nl>
7 */
8
9
10 #ifndef SCRIPT_COLUMN_HH
11 #define SCRIPT_COLUMN_HH
12
13 #include "elem-group.hh"
14 #include "item.hh"
15
16 /** a struct for treating a group of noteheads (noteheads, stem
17   (chord) and scripts ) as a single entity.  */
18 class Script_column : public Item, public Element_group {
19
20 protected:
21     virtual void do_print() const;
22     virtual void do_substitute_dependency(Score_elem*, Score_elem*);
23     virtual void do_pre_processing() ;
24 public:
25     Link_array<Script> script_l_arr_;
26     Link_array<Item> support_l_arr_;
27     NAME_MEMBERS();
28    
29     void add(Script *);
30     void add_support(Item*);
31 };
32
33 #endif // SCRIPT_COLUMN_HH