]> git.donarmstrong.com Git - lilypond.git/blob - hdr/lyriccolumn.hh
e7aaaafc86a87c52e989ba00c7d18984b907c768
[lilypond.git] / hdr / lyriccolumn.hh
1 //
2 // lyriccolumn.hh -- declare Lyric_column
3 //
4 // copyright 1997 Jan Nieuwenhuizen <jan@digicash.com>
5
6
7 #ifndef LYRIC_COLUMN_HH
8 #define LYRIC_COLUMN_HH
9
10 #include "key.hh"
11 #include "stcol.hh"
12 #include "staff.hh"
13
14 /// (lcol)
15 struct Lyric_column : Staff_column {
16
17     Array<Lyric_req*> lreq_l_array_;
18     Lyric_staff* lstaff_l_;
19     
20     void typeset_item(Item *);
21     virtual void setup_one_request(Request*);
22
23     Lyric_column(Lyric_staff*rs);
24 };
25
26 #endif // LYRIC_COLUMN_HH
27
28
29
30