]> git.donarmstrong.com Git - lilypond.git/blob - lily/include/dots.hh
release: 1.3.19
[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 class Dots :
21   public Item
22 {
23 protected:
24   virtual Molecule * do_brew_molecule_p () const;
25   virtual void do_post_processing ();
26 public:
27   
28   Dots ();
29 };
30
31 #endif // DOTS_HH