]> git.donarmstrong.com Git - lilypond.git/blob - lily/staff-elem-info.cc
669c0244ce445adbb03e78f54e3095e3cae87374
[lilypond.git] / lily / staff-elem-info.cc
1 /*
2   staff-elem-info.cc -- implement Score_elem_info
3
4   source file of the LilyPond music typesetter
5
6   (c) 1997 Han-Wen Nienhuys <hanwen@stack.nl>
7 */
8
9 #include "staff-elem-info.hh"
10 #include "request.hh"
11
12 Score_elem_info::Score_elem_info(Score_elem*s_l, Request*r_l)
13 {
14     elem_l_ = s_l;
15     voice_l_ =  (r_l)?r_l->voice_l():0;
16     req_l_ = r_l;
17 }
18
19 Score_elem_info::Score_elem_info()
20 {
21     elem_l_ = 0;
22     voice_l_ = 0;
23
24     req_l_ = 0;
25 }
26
27
28