]> git.donarmstrong.com Git - lilypond.git/blob - lily/include/crescendo.hh
patch::: 1.3.17.jcn2
[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   (normal spanner?)
18  */
19 class Crescendo : public Spanner {
20 public:
21   int grow_dir_;
22     
23   /// if there is a dynamic at the end, make the sign smaller.
24   Drul_array<bool> dyn_b_drul_;
25
26   Crescendo();
27 protected:
28   VIRTUAL_COPY_CONS(Score_element);
29   virtual Molecule*do_brew_molecule_p() const;
30     
31 private:
32   Molecule get_symbol() const;
33 };
34
35 #endif // CRESCENDO_HH