lilypond-1.3.65
[lilypond.git] / lily / audio-element.cc
blob39fbe8f1788d54f75ef03ff6fce5fbe136ee03ea
1 /*
2 audio-element.cc -- implement Audio_element
4 source file of the GNU LilyPond music typesetter
6 (c) 1997--2000 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