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