]> git.donarmstrong.com Git - lilypond.git/blob - lily/staff-info.cc
release: 1.1.53
[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--1999 Han-Wen Nienhuys <hanwen@cs.uu.nl>
7 */
8
9 #include "proto.hh"
10
11 #include "staff-info.hh"
12 #include "score-column.hh"
13
14 Staff_info::Staff_info()
15 {
16   time_C_ = 0;
17   command_l_ =0;
18   musical_l_ =0;
19 }
20
21
22 Paper_column*
23 Staff_info::command_pcol_l()
24 {
25   return command_l_;
26 }
27
28 Paper_column*
29 Staff_info::musical_pcol_l()
30 {
31   return musical_l_;
32 }
33