]> git.donarmstrong.com Git - lilypond.git/blob - lily/include/rhythmic-head.hh
98ebcc5bfd92fd6dc48ebb5eabcaa489a98c1871
[lilypond.git] / lily / include / rhythmic-head.hh
1 /*
2   rhythmic-head.hh -- declare Rhythmic_head
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 RHYTHMIC_HEAD_HH
11 #define RHYTHMIC_HEAD_HH
12
13 #include "item.hh"
14 #include "staff-symbol-referencer.hh"
15
16 class Rhythmic_head : public Item, public Staff_symbol_referencer
17 {
18 public:
19   Stem * stem_l_;
20   int balltype_i_;
21   int dots_i_;
22   int position_i_;
23
24   Dots * dots_l_;
25
26   void add_dots (Dots *);
27   Rhythmic_head ();
28 protected:
29   virtual void do_post_processing ();
30   virtual void do_add_processing ();
31   virtual void do_print () const;
32   virtual void do_substitute_element_pointer (Score_element*,Score_element*);
33 };
34
35 #endif // RHYTHMIC_HEAD_HH