]> git.donarmstrong.com Git - lilypond.git/blob - lily/include/dots.hh
release: 1.3.11
[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--1999 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 #include "directional-element.hh"
16
17 /**
18   The dots to go with a notehead/rest.  A separate class, since they
19   are a party in collision resolution.
20   */
21 class Dots :
22   public Item,
23   public Directional_element
24 {
25 protected:
26   virtual Molecule * do_brew_molecule_p () const;
27   virtual void do_post_processing ();
28 public:
29   int dots_i_;
30   
31   Dots ();
32 };
33
34 #endif // DOTS_HH