]> git.donarmstrong.com Git - lilypond.git/blob - lily/audio-column.cc
* lily/include/audio-column.hh: remove unused variables.
[lilypond.git] / lily / audio-column.cc
1 /*
2   audio-column.cc -- implement Audio_column
3
4   source file of the GNU LilyPond music typesetter
5
6   (c) 1997--2004 Jan Nieuwenhuizen <janneke@gnu.org>
7  */
8
9 #include "audio-column.hh"
10 #include "audio-item.hh"
11 #include "performance.hh"
12
13 Audio_column::Audio_column (Moment at_mom)
14 {
15   at_mom_ = at_mom;
16 }
17
18 void
19 Audio_column::add_audio_item (Audio_item* l)
20 {
21   audio_items_.push (l);
22   l->audio_column_ = this; 
23 }
24
25 Moment
26 Audio_column::at_mom () const
27 {
28   return at_mom_;
29 }
30
31