]> git.donarmstrong.com Git - lilypond.git/blob - lily/score-elem-info.cc
release: 0.0.77.jcn1
[lilypond.git] / lily / score-elem-info.cc
1 /*
2   score-elem-info.cc -- implement Score_elem_info
3
4   source file of the GNU LilyPond music typesetter
5
6   (c) 1997 Han-Wen Nienhuys <hanwen@stack.nl>
7 */
8
9 #include "score-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     req_l_ = r_l;
16 }
17
18 Score_elem_info::Score_elem_info()
19 {
20     elem_l_ = 0;
21     req_l_ = 0;
22 }
23
24
25