]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/include/dots.hh
release: 1.3.6
[lilypond.git] / lily / include / dots.hh
index bb7ab8489f7cd18c9ddd6ab4bdddc68c5e41219e..05aeec680d2073e2a3145c80574cd15d94d1b59f 100644 (file)
@@ -3,7 +3,7 @@
 
   source file of the GNU LilyPond music typesetter
 
-  (c)  1997--1998 Han-Wen Nienhuys <hanwen@cs.uu.nl>
+  (c)  1997--1999 Han-Wen Nienhuys <hanwen@cs.uu.nl>
 */
 
 
 #define DOTS_HH
 
 #include "item.hh"
+#include "staff-symbol-referencer.hh"
+#include "directional-element.hh"
 
 /**
   The dots to go with a notehead/rest.  A separate class, since they
   are a party in collision resolution.
   */
-class Dots : public Item
+class Dots : public Item, public Staff_symbol_referencer,
+  public Directional_element
 {
 protected:
-  virtual Molecule * brew_molecule_p () const;
+  virtual Molecule * do_brew_molecule_p () const;
   virtual void do_post_processing ();
 public:
-  int no_dots_i_;
-  int position_i_;
-
+  int dots_i_;
   
   Dots ();
 };