]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/audio-item.cc
*** empty log message ***
[lilypond.git] / lily / audio-item.cc
index dc78d61dc14673e15105fe2b5d56e2195bf74a2e..cd1606114781dc12b3f9947a23533b4d112a1159 100644 (file)
@@ -3,10 +3,11 @@
 
   source file of the GNU LilyPond music typesetter
 
-  (c)  1997--2003 Jan Nieuwenhuizen <janneke@gnu.org>
+  (c) 1997--2004 Jan Nieuwenhuizen <janneke@gnu.org>
 */
 
 #include "audio-item.hh"
+
 #include "midi-item.hh"
 #include "audio-column.hh"
 
@@ -42,8 +43,8 @@ Audio_note::tie_to (Audio_note* t)
                    
 Audio_key::Audio_key (int acc, bool major)
 {
-  accidentals_=acc;
-  major_=major;
+  accidentals_ = acc;
+  major_ = major;
 }
 
 Audio_dynamic::Audio_dynamic (Real volume)
@@ -68,21 +69,3 @@ Audio_text::Audio_text (Audio_text::Type type, String text_string)
   type_ = type;
 }
 
-Audio_tie::Audio_tie ()
-{
-  note_drul_[RIGHT] = 0;
-  note_drul_[LEFT] = 0;
-}
-
-void
-Audio_tie::set_note (Direction d, Audio_note* note)
-{
-  assert (!note_drul_[d]);
-  note_drul_[d] = note;
-  //set_bound (d, head);
-
-  //  add_dependency (head);
-}
-
-
-