]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/include/tie.hh
release: 1.3.29
[lilypond.git] / lily / include / tie.hh
index 7fe61a3850e2057c5fb7dd96384e2fc480e95fe6..53dc0733ec0d2c2c8110d6c1683a85d9e877a965 100644 (file)
@@ -3,20 +3,20 @@
 
   source file of the GNU LilyPond music typesetter
 
-  (c)  1997--1999 Han-Wen Nienhuys <hanwen@cs.uu.nl>
+  (c)  1997--2000 Han-Wen Nienhuys <hanwen@cs.uu.nl>
 */
 
 
 #ifndef TIE_HH
 #define TIE_HH
 
-#include "bow.hh"
+#include "spanner.hh"
 #include "rod.hh"
 
 /**
   Connect two noteheads.
   */
-class Tie : public Bow
+class Tie : public Spanner
 {
 public:
   Tie ();
@@ -24,10 +24,20 @@ public:
   VIRTUAL_COPY_CONS(Score_element);
 
   Note_head* head (Direction) const;
+  Real position_f () const;
+  
+  virtual Direction get_default_dir() const;
+
 protected:
+  virtual Molecule do_brew_molecule () const;
+  virtual Array<Offset> get_encompass_offset_arr () const;
+  Bezier get_curve () const;
+
+  Drul_array<Real> dy_f_drul_;
+  Drul_array<Real> dx_f_drul_;
+
   virtual void do_add_processing ();
   virtual void do_post_processing ();
-  virtual Direction get_default_dir() const;
 
   virtual Array<Rod> get_rods () const;