]> git.donarmstrong.com Git - lilypond.git/blob - lily/audio-element-info.cc
release: 1.3.23
[lilypond.git] / lily / audio-element-info.cc
1 /*
2   Audio-element-info.cc -- implement Audio_element_info
3
4   source file of the GNU LilyPond music typesetter
5
6   (c)  1997--2000 Han-Wen Nienhuys <hanwen@cs.uu.nl>
7 */
8
9 #include "audio-element-info.hh"
10 #include "request.hh"
11
12 Audio_element_info::Audio_element_info (Audio_element*s_l, Music *r_l)
13 {
14   elem_l_ = s_l;
15   req_l_ = r_l;
16 }
17
18
19 Audio_element_info::Audio_element_info()
20 {
21   elem_l_ = 0;
22   req_l_ = 0;
23 }
24
25 Link_array<Translator>
26 Audio_element_info::origin_trans_l_arr (Translator*) const
27 {
28   return origin_trans_l_arr_;
29 }