blob: ff9e0fea4f87ad7f91978c7e16c8cba9ebcda906 (
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
|
/*
lily-proto.hh -- declare
source file of the LilyPond music typesetter
(c) 1997 Han-Wen Nienhuys <hanwen@stack.nl>
*/
#ifndef LILY_PROTO_HH
#define LILY_PROTO_HH
struct My_lily_lexer;
struct My_lily_parser;
struct Notename_table;
struct Absolute_dynamic_req;
struct Barcheck_req;
struct Bar_req;
struct Beam_req;
struct Blank_req;
struct Bracket_req;
struct Cadenza_req;
struct Clef_change_req;
struct Cresc_req;
struct Decresc_req;
struct Durational_req;
struct Dynamic_req;
struct Group_change_req;
struct Group_feature_req;
struct Key_change_req;
struct Lyric_req;
struct Melodic_req;
struct Measure_grouping_req;
struct Meter_change_req;
struct Musical_req;
struct Command_req;
struct Note_req;
struct Plet_req;
struct Partial_measure_req;
struct Rest_req;
struct Rhythmic_grouping_req;
struct Rhythmic_req;
struct Script_req;
struct Skip_req;
struct Slur_req;
struct Spacing_req ;
struct Span_req;
struct Span_dynamic_req;
struct Subtle_req;
struct Stem_req;
struct Terminate_voice_req;
struct Text_req;
struct Timing_req;
#endif // LILY_PROTO_HH
|