]> git.donarmstrong.com Git - lilypond.git/blob - lily/include/crescendo.hh
release: 1.3.19
[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--2000 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   Crescendo();
22 protected:
23   VIRTUAL_COPY_CONS(Score_element);
24   virtual Molecule*do_brew_molecule_p() const;
25     
26 private:
27   Molecule get_symbol() const;
28 };
29
30 #endif // CRESCENDO_HH