lilypond-1.1.21
[lilypond.git] / lily / staff-info.cc
blob43140d7dcc3c06fd0baee5da4b82f90530465373
1 /*
2 staff-info.cc -- implement Staff_info
4 source file of the GNU LilyPond music typesetter
6 (c) 1997--1998 Han-Wen Nienhuys <hanwen@cs.uu.nl>
7 */
9 #include "proto.hh"
10 #include "plist.hh"
11 #include "staff-info.hh"
12 #include "score-column.hh"
14 Score*
15 Staff_info::score_l()
17 return score_l_;
20 Staff_info::Staff_info()
22 score_l_ =0;
23 time_C_ = 0;
24 rhythmic_C_ =0;
27 Score_column*
28 Staff_info::musical_l()
30 return musical_l_;
33 Score_column*
34 Staff_info::command_l()
36 return command_l_;
39 Paper_column*
40 Staff_info::command_pcol_l()
42 return command_l();
45 Paper_column*
46 Staff_info::musical_pcol_l()
48 return musical_l();