lilypond-1.3.16
[lilypond.git] / lily / include / dots.hh
blob4cb5843b9df8b891703d97207ac68d4b1706495e
1 /*
2 dots.hh -- declare Dots
4 source file of the GNU LilyPond music typesetter
6 (c) 1997--1999 Han-Wen Nienhuys <hanwen@cs.uu.nl>
7 */
10 #ifndef DOTS_HH
11 #define DOTS_HH
13 #include "item.hh"
16 /**
17 The dots to go with a notehead/rest. A separate class, since they
18 are a party in collision resolution.
20 class Dots :
21 public Item
23 protected:
24 virtual Molecule * do_brew_molecule_p () const;
25 virtual void do_post_processing ();
26 public:
27 // junkme.
28 int dots_i_;
30 Dots ();
33 #endif // DOTS_HH