]> git.donarmstrong.com Git - lilypond.git/blob - lily/include/rhythmic-head.hh
release: 1.3.46
[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--2000 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
15 class Rhythmic_head : public Item
16 {
17 public:
18
19   /*
20     Typically not used, since Rhythmic_head is not breakable.
21    */
22   VIRTUAL_COPY_CONS(Rhythmic_head);
23   int balltype_i () const;
24
25   void add_dots (Dots *);
26   Stem * stem_l () const;
27   Dots * dots_l () const;
28   int dot_count () const;
29 protected:
30   virtual void after_line_breaking ();
31 };
32
33 #endif // RHYTHMIC_HEAD_HH