]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/include/dots.hh
release: 1.3.55
[lilypond.git] / lily / include / dots.hh
index 6456dcfe0c624381e253664b9a0770d825cf0970..e1bf806390d2d00d481630777b1678d28185f04f 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--2000 Han-Wen Nienhuys <hanwen@cs.uu.nl>
 */
 
 
 
 #include "item.hh"
 
+
 /**
   The dots to go with a notehead/rest.  A separate class, since they
   are a party in collision resolution.
+
+  properties:
+
+  dot-count -- number of dots.
+
+  
   */
-class Dots : public Item
+class Dots :  public Item
 {
 protected:
-  virtual Molecule * do_brew_molecule_p () const;
-  virtual void do_post_processing ();
+  virtual Molecule do_brew_molecule () const;
+  virtual void after_line_breaking ();
 public:
-  int no_dots_i_;
-  int position_i_;
-
   
-  Dots ();
+  Dots (SCM);
 };
 
 #endif // DOTS_HH