]> git.donarmstrong.com Git - lilypond.git/blob - lily/include/dots.hh
patch::: 1.3.58.jcn2
[lilypond.git] / lily / include / dots.hh
1 /*
2   dots.hh -- declare Dots
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 DOTS_HH
11 #define DOTS_HH
12
13 #include "item.hh"
14
15
16 /**
17   The dots to go with a notehead/rest.  A separate class, since they
18   are a party in collision resolution.
19
20   properties:
21
22   dot-count -- number of dots.
23
24   
25   */
26 class Dots :  public Item
27 {
28 protected:
29   Molecule do_brew_molecule () const;
30   virtual void after_line_breaking ();
31 public:
32    static SCM scheme_molecule (SCM);
33   
34
35   Dots (SCM);
36 };
37
38 #endif // DOTS_HH