]> git.donarmstrong.com Git - lilypond.git/blob - lily/include/rhythmic-head.hh
patch::: 1.3.43.jcn1
[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 /*
16   Why don't I have a 
17   VIRTUAL_COPY_CONS (Score_element);
18   see also note-head, rest.
19   ?
20 */
21
22 class Rhythmic_head : public Item
23 {
24 public:
25   int balltype_i () const;
26
27   void add_dots (Dots *);
28   Stem * stem_l () const;
29   Dots * dots_l () const;
30   int dot_count () const;
31 protected:
32   virtual void after_line_breaking ();
33 };
34
35 #endif // RHYTHMIC_HEAD_HH