lilypond-0.1.59
[lilypond.git] / lily / staff-elem-info.cc
blob669c0244ce445adbb03e78f54e3095e3cae87374
1 /*
2 staff-elem-info.cc -- implement Score_elem_info
4 source file of the LilyPond music typesetter
6 (c) 1997 Han-Wen Nienhuys <hanwen@stack.nl>
7 */
9 #include "staff-elem-info.hh"
10 #include "request.hh"
12 Score_elem_info::Score_elem_info(Score_elem*s_l, Request*r_l)
14 elem_l_ = s_l;
15 voice_l_ = (r_l)?r_l->voice_l():0;
16 req_l_ = r_l;
19 Score_elem_info::Score_elem_info()
21 elem_l_ = 0;
22 voice_l_ = 0;
24 req_l_ = 0;