]> git.donarmstrong.com Git - lilypond.git/commitdiff
lilypond-0.0.65
authorfred <fred>
Sun, 24 Mar 2002 19:40:47 +0000 (19:40 +0000)
committerfred <fred>
Sun, 24 Mar 2002 19:40:47 +0000 (19:40 +0000)
lily/include/crescendo.hh
lily/include/staff-sym.hh

index 915094e1dc83625f905fb8137e6e72f127e22542..72ff2c1d1be9034755663bf43ee39f121eda1880 100644 (file)
@@ -1,7 +1,7 @@
 /*
   crescendo.hh -- declare Crescendo
 
-  source file of the LilyPond music typesetter
+  source file of the GNU LilyPond music typesetter
 
   (c) 1997 Han-Wen Nienhuys <hanwen@stack.nl>
 */
@@ -16,7 +16,6 @@
   The hairpin symbol. (cresc)
  */
 class Crescendo : public Spanner , public Staff_side {
-
 public:
     int grow_dir_i_;
     
@@ -26,10 +25,13 @@ public:
     /// if there is a dynamic at the end, make the sign smaller.
     bool left_dyn_b_;
     Crescendo();
-private:
-    Spanner* do_break_at( PCol*, PCol*) const;
-    Molecule*brew_molecule_p()const;
+protected:
+    SPANNER_CLONE(Crescendo)
+    virtual Molecule*brew_molecule_p()const;
     NAME_MEMBERS(Crescendo);
+    
+private:
+    
 };
 
 #endif // CRESCENDO_HH
index 852771b79e17fa9524360e72e085b8f84ba9ffba..c3a49dfc57a6620348efa23cb3c88f040623e7de 100644 (file)
@@ -1,7 +1,7 @@
 /*
   staffsym.hh -- declare Staff_symbol
 
-  source file of the LilyPond music typesetter
+  source file of the GNU LilyPond music typesetter
 
   (c) 1997 Han-Wen Nienhuys <hanwen@stack.nl>
 */
@@ -21,14 +21,15 @@ class Staff_symbol : public Spanner
     int no_lines_i_;
 public:
 
+
     void set_extent(PCol* p1, PCol* p2);
     NAME_MEMBERS(Staff_symbol);
     Staff_symbol(int lines);
     Real inter_note_f()const;
     int steps_i()const;
 protected:
+    SPANNER_CLONE(Staff_symbol)
     virtual Molecule* brew_molecule_p() const;
     virtual void do_print()const;
-    virtual Spanner *do_break_at( PCol *c1,  PCol *c2) const;
 };
 #endif // STAFFSYM_HH