]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/audio-element.cc
Merge branch 'master' of ssh://jneem@git.sv.gnu.org/srv/git/lilypond into tmp
[lilypond.git] / lily / audio-element.cc
index 275e0a50a57dd623f9a13ddba348ed6cec30fce4..d542bc5efc58cc38177752bb3892baa287bc5297 100644 (file)
@@ -3,29 +3,22 @@
 
   source file of the GNU LilyPond music typesetter
 
-  (c)  1997--1999 Han-Wen Nienhuys <hanwen@cs.uu.nl>
+  (c) 1997--2008 Han-Wen Nienhuys <hanwen@xs4all.nl>
 */
+#include <cassert> 
 
 #include "audio-element.hh"
-#include "debug.hh"
 
-
-
-Audio_element::~Audio_element()
+Audio_element::Audio_element ()
 {
 }
 
-void
-Audio_element::print () const
+Audio_element::~Audio_element ()
 {
-#ifndef NPRINT
-  DOUT << classname (this) << "{ ";
-  do_print ();
-  DOUT << "}";
-#endif
 }
 
-void
-Audio_element::do_print ()const
+char const *
+Audio_element::name () const
 {
+  return this->class_name ();
 }