]> git.donarmstrong.com Git - lilypond.git/blob - lily/include/crescendo.hh
f0364a2c037126c366d77722c38b52cd650ab838
[lilypond.git] / lily / include / crescendo.hh
1 /*
2   crescendo.hh -- declare Crescendo
3
4   source file of the GNU LilyPond music typesetter
5
6   (c)  1997--1999 Han-Wen Nienhuys <hanwen@cs.uu.nl>
7 */
8
9
10 #ifndef CRESCENDO_HH
11 #define CRESCENDO_HH
12
13 #include "spanner.hh"
14 /**
15   The hairpin symbol. (cresc)
16  */
17 class Crescendo : public Spanner {
18 public:
19   int grow_dir_;
20     
21   /// if there is a dynamic at the end, make the sign smaller.
22   Drul_array<bool> dyn_b_drul_;
23
24   Crescendo();
25 protected:
26   VIRTUAL_COPY_CONS(Score_element);
27   virtual Molecule*do_brew_molecule_p() const;
28     
29 private:
30   Molecule get_symbol() const;
31 };
32
33 #endif // CRESCENDO_HH