lilypond-1.3.15
[lilypond.git] / lily / audio-element.cc
blob3a4685af4cffec98115325b4aea29ea3c87252b2
1 /*
2 audio-element.cc -- implement Audio_element
4 source file of the GNU LilyPond music typesetter
6 (c) 1997--1999 Han-Wen Nienhuys <hanwen@cs.uu.nl>
7 */
9 #include "audio-element.hh"
10 #include "debug.hh"
12 Audio_element::Audio_element ()
14 grace_b_ = false;
17 Audio_element::~Audio_element()
21 void
22 Audio_element::print () const
24 #ifndef NPRINT
25 DEBUG_OUT << classname (this) << "{ ";
26 do_print ();
27 DEBUG_OUT << "}";
28 #endif
31 void
32 Audio_element::do_print ()const