lilypond-1.1.44
[lilypond.git] / lily / include / script-column.hh
blob74ba090bad69189bd5548f9cc937dd12e2160321
1 /*
2 script-column.hh -- declare Script_column
4 source file of the GNU LilyPond music typesetter
6 (c) 1997--1999 Han-Wen Nienhuys <hanwen@cs.uu.nl>
7 */
10 #ifndef SCRIPT_COLUMN_HH
11 #define SCRIPT_COLUMN_HH
13 #include "axis-group-item.hh"
15 /** a struct for treating a group of noteheads (noteheads, stem
16 (chord) and scripts) as a single entity. */
17 class Script_column : public Axis_group_item {
19 protected:
20 virtual void do_print() const;
21 virtual void do_substitute_element_pointer (Score_element*, Score_element*);
22 virtual void do_pre_processing() ;
23 public:
24 Link_array<Script> script_l_arr_;
25 Link_array<Item> support_l_arr_;
28 virtual void add_script (Script *);
29 void add_support (Item*);
30 Script_column ();
33 #endif // SCRIPT_COLUMN_HH