]> git.donarmstrong.com Git - lilypond.git/blob - lily/audio-element.cc
release: 1.3.19
[lilypond.git] / lily / audio-element.cc
1 /*
2   audio-element.cc -- implement Audio_element
3
4   source file of the GNU LilyPond music typesetter
5
6   (c)  1997--2000 Han-Wen Nienhuys <hanwen@cs.uu.nl>
7 */
8
9 #include "audio-element.hh"
10 #include "debug.hh"
11
12 Audio_element::Audio_element ()
13 {
14   grace_b_ = false;
15 }
16
17 Audio_element::~Audio_element()
18 {
19 }
20
21 void
22 Audio_element::print () const
23 {
24 #ifndef NPRINT
25   DEBUG_OUT << classname (this) << "{ ";
26   do_print ();
27   DEBUG_OUT << "}";
28 #endif
29 }
30
31 void
32 Audio_element::do_print ()const
33 {
34 }