blob: 915094e1dc83625f905fb8137e6e72f127e22542 (
about) (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
|
/*
crescendo.hh -- declare Crescendo
source file of the LilyPond music typesetter
(c) 1997 Han-Wen Nienhuys <hanwen@stack.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 {
public:
int grow_dir_i_;
/// 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);
};
#endif // CRESCENDO_HH
|