]> git.donarmstrong.com Git - lilypond.git/blob - midi2ly/include/lilypond-column.hh
patch::: 1.5.18.moh1: [PATCH] 1.4 Lyric alignment
[lilypond.git] / midi2ly / include / lilypond-column.hh
1 //
2 // lilypond-column.hh -- declare Lilypond_column
3 //
4 // (c) 1997--2001 Jan Nieuwenhuizen <janneke@gnu.org>
5
6 #ifndef LILYPOND_COLUMN_HH
7 #define LILYPOND_COLUMN_HH
8
9 #include "flower-proto.hh"
10 #include "midi2ly-proto.hh"
11 #include "rational.hh"
12 #include "cons.hh"
13
14 /// (lilypond_column)
15 class Lilypond_column 
16 {
17 public:
18   Lilypond_column (Lilypond_score* lilypond_score_l, Rational mom);
19
20   void add_item (Lilypond_item* lilypond_item_l);
21   Rational at_mom ();
22
23   Cons_list<Lilypond_item> lilypond_item_l_list_;
24   Rational at_mom_;
25   Lilypond_score* lilypond_score_l_;
26 };
27
28 #endif // LILYPOND_COLUMN_HH
29