]> git.donarmstrong.com Git - lilypond.git/blob - lily/include/dot-column.hh
release: 1.1.58
[lilypond.git] / lily / include / dot-column.hh
1 /*
2   dot-column.hh -- declare Dot_column Dot_column
3
4   source file of the GNU LilyPond music typesetter
5
6   (c)  1997--1999 Han-Wen Nienhuys <hanwen@cs.uu.nl>
7 */
8
9
10 #ifndef DOT_COLUMN_HH
11 #define DOT_COLUMN_HH
12
13 #include "axis-group-item.hh"
14 #include "note-head-side.hh"
15
16 /**
17   Group dots.  This is needed because, the dots have to be aligned per voice
18  */
19 class Dot_column : public Axis_group_item, public Note_head_side
20 {
21   Link_array<Dots> dot_l_arr_;
22   static int compare (Dots * const&,Dots * const&);
23 public:
24   VIRTUAL_COPY_CONS (Score_element);
25   void add_head (Rhythmic_head*);
26   void add_dots (Dots*);
27   Dot_column ();
28
29 protected:
30
31   virtual void do_pre_processing ();
32   virtual void do_post_processing ();
33   virtual void do_substitute_element_pointer (Score_element *o, Score_element*n);
34 };
35 #endif // DOT_COLUMN_HH