]> git.donarmstrong.com Git - lilypond.git/blob - lily/include/dots.hh
release: 1.3.6
[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 #include "staff-symbol-referencer.hh"
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 : public Item, public Staff_symbol_referencer,
22   public Directional_element
23 {
24 protected:
25   virtual Molecule * do_brew_molecule_p () const;
26   virtual void do_post_processing ();
27 public:
28   int dots_i_;
29   
30   Dots ();
31 };
32
33 #endif // DOTS_HH