]> git.donarmstrong.com Git - lilypond.git/blob - lily/include/score-align-grav.hh
release: 0.1.7
[lilypond.git] / lily / include / score-align-grav.hh
1 /*
2   score-align-grav.hh -- declare Score_align_reg
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 SCORE_ALIGN_GRAV_HH
11 #define SCORE_ALIGN_GRAV_HH
12
13 #include "engraver.hh"
14
15 /**
16   Group  a number of items across staffs
17  */
18 class Score_align_engraver: public Engraver
19 {
20     Horizontal_group_item  * align_p_;
21 public:
22     
23     const char* type_ch_C_;
24     int priority_i_;
25     Score_align_engraver();
26     DECLARE_MY_RUNTIME_TYPEINFO;
27 protected:
28     virtual void acknowledge_element(Score_elem_info);
29     virtual void do_pre_move_processing();
30 };
31 #endif // SCORE_ALIGN_GRAV_HH