X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=lily%2Faudio-column.cc;h=0b60edf6be790540bf8836c9e279079c6c8bffc7;hb=0387f04497978e37b335a8b99eec905499d6ad0f;hp=85f88c84f9a916a9f8dc4b463484536434c3fd8a;hpb=8aad615ea7bb31f49a0c2afc21eea5ff5de20437;p=lilypond.git diff --git a/lily/audio-column.cc b/lily/audio-column.cc index 85f88c84f9..0b60edf6be 100644 --- a/lily/audio-column.cc +++ b/lily/audio-column.cc @@ -3,43 +3,42 @@ source file of the GNU LilyPond music typesetter - (c) 1997--1999 Jan Nieuwenhuizen - */ + (c) 1997--2008 Jan Nieuwenhuizen +*/ #include "audio-column.hh" + #include "audio-item.hh" #include "performance.hh" -#include "debug.hh" - -Audio_column::Audio_column (Moment at_mom) +Audio_column::Audio_column (Moment when) { - at_mom_ = at_mom; - performance_l_ = 0; + when_ = when; } void -Audio_column::add_audio_item (Audio_item* l) +Audio_column::add_audio_item (Audio_item *l) { - audio_item_l_list_.bottom().add (l); - l->audio_column_l_ = this; + audio_items_.push_back (l); + l->audio_column_ = this; } Moment -Audio_column::at_mom() const +Audio_column::when () const +{ + return when_; +} + +int +Audio_column::ticks () const { - return at_mom_; + return int (moment_to_ticks (when_)); } void -Audio_column::print() const +Audio_column::offset_when (Moment m) { -#ifndef NPRINT - DOUT << "Audio_column {"; - DOUT << "at: " << at_mom_ << ". Contains:"; - for (PCursor i (audio_item_l_list_.top ()); i.ok (); i++) - DOUT << classname (i.ptr ()) << ", "; - DOUT << "\n}\n"; -#endif + when_ += m; } +