lilypond-1.0.19
[lilypond.git] / lily / include / vertical-align-elem.hh
blobb4962c34a07b8d31bdf42b0c2d74ae5b449e61d6
1 /*
2 vertical-align-item.hh -- declare Vertical_align_elem
4 source file of the GNU LilyPond music typesetter
6 (c) 1997--1998 Han-Wen Nienhuys <hanwen@stack.nl>
7 */
10 #ifndef VERTICAL_ALIGN_ITEM_HH
11 #define VERTICAL_ALIGN_ITEM_HH
13 #include "score-elem.hh"
15 /**
16 Order elements top to bottom.
18 class Vertical_align_element : virtual public Score_elem {
19 Link_array<Score_elem> elem_l_arr_;
20 public:
21 void add (Score_elem*);
22 bool contains_b (Score_elem const*) const;
23 Vertical_align_element();
24 DECLARE_MY_RUNTIME_TYPEINFO;
25 protected:
26 virtual void do_substitute_dependency (Score_elem*,Score_elem*);
27 virtual void do_post_processing() ;
29 #endif // VERTICAL_ALIGN_ITEM_HH