]> git.donarmstrong.com Git - lilypond.git/blob - lily/staff-info.cc
release: 1.0.1
[lilypond.git] / lily / staff-info.cc
1 /*
2   staff-info.cc -- implement Staff_info
3
4   source file of the GNU LilyPond music typesetter
5
6   (c)  1997--1998 Han-Wen Nienhuys <hanwen@cs.uu.nl>
7 */
8
9 #include "proto.hh"
10 #include "plist.hh"
11 #include "staff-info.hh"
12 #include "score-column.hh"
13
14 Score*
15 Staff_info::score_l()
16 {
17   return score_l_;
18 }
19
20 Staff_info::Staff_info()
21 {
22   score_l_ =0;
23   time_C_ = 0;
24   rhythmic_C_ =0;
25 }
26
27 Score_column*
28 Staff_info::musical_l()
29 {
30   return musical_l_;
31 }
32
33 Score_column*
34 Staff_info::command_l()
35 {
36   return command_l_;
37 }
38
39 Paper_column*
40 Staff_info::command_pcol_l()
41 {
42   return command_l();
43 }
44
45 Paper_column*
46 Staff_info::musical_pcol_l()
47 {
48   return musical_l();
49 }
50