]> git.donarmstrong.com Git - lilypond.git/blob - lily/audio-element.cc
release: 0.1.13
[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 Han-Wen Nienhuys <hanwen@stack.nl>
7 */
8
9 #include "audio-element.hh"
10 #include "debug.hh"
11
12 IMPLEMENT_IS_TYPE_B(Audio_element);
13
14 Audio_element::~Audio_element()
15 {
16 }
17
18 void
19 Audio_element::print () const
20 {
21 #ifndef NPRINT
22   DOUT << name () << "{ ";
23   do_print ();
24   DOUT << "}";
25 #endif
26 }
27
28 void
29 Audio_element::do_print ()const
30 {
31 }