]> git.donarmstrong.com Git - lilypond.git/blob - lily/staff-info.cc
2a0667a892d6d6c511fa0239d77ac252e710c719
[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   staff_sym_l_=0;
26 }
27
28 Score_column*
29 Staff_info::musical_l()
30 {
31   return musical_l_;
32 }
33
34 Score_column*
35 Staff_info::command_l()
36 {
37   return command_l_;
38 }
39
40 Paper_column*
41 Staff_info::command_pcol_l()
42 {
43   return command_l();
44 }
45
46 Paper_column*
47 Staff_info::musical_pcol_l()
48 {
49   return musical_l();
50 }
51