]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/include/crescendo.hh
release: 1.3.18
[lilypond.git] / lily / include / crescendo.hh
index 915094e1dc83625f905fb8137e6e72f127e22542..d39f311094f4e239d84786da5f72794a3eb9d478 100644 (file)
@@ -1,35 +1,30 @@
 /*
   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>
+  (c)  1997--1999 Han-Wen Nienhuys <hanwen@cs.uu.nl>
 */
 
 
 #ifndef CRESCENDO_HH
 #define CRESCENDO_HH
 
-#include "staff-side.hh"
 #include "spanner.hh"
 /**
   The hairpin symbol. (cresc)
- */
-class Crescendo : public Spanner , public Staff_side {
 
+  (normal spanner?)
+ */
+class Crescendo : public Spanner {
 public:
-    int grow_dir_i_;
+  Crescendo();
+protected:
+  VIRTUAL_COPY_CONS(Score_element);
+  virtual Molecule*do_brew_molecule_p() const;
     
-/// if there is a dynamic at the end, make the sign smaller.
-    bool right_dyn_b_;
-
-    /// 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;
-    NAME_MEMBERS(Crescendo);
+  Molecule get_symbol() const;
 };
 
 #endif // CRESCENDO_HH