lilypond-1.3.16
[lilypond.git] / lily / include / audio-element.hh
blobc629bcd2b15c4b9a5a3c2c6c7ae9e630ada997a9
1 /*
2 audio-element.hh -- declare Audio_element
4 source file of the GNU LilyPond music typesetter
6 (c) 1997--1999 Han-Wen Nienhuys <hanwen@cs.uu.nl>
7 */
10 #ifndef AUDIO_ELEMENT_HH
11 #define AUDIO_ELEMENT_HH
13 #include "virtual-methods.hh"
15 class Audio_element
17 public:
18 Audio_element ();
19 virtual ~Audio_element ();
21 void print () const;
23 // should we use a scm list?
24 bool grace_b_;
26 protected:
27 virtual void do_print () const;
30 #endif // AUDIO_ELEMENT_HH