]> git.donarmstrong.com Git - lilypond.git/blob - lily/include/audio-element.hh
Fix some bugs in the dynamic engraver and PostScript backend
[lilypond.git] / lily / include / audio-element.hh
1 /*
2   audio-element.hh -- declare Audio_element
3
4   source file of the GNU LilyPond music typesetter
5
6   (c) 1997--2006 Han-Wen Nienhuys <hanwen@xs4all.nl>
7 */
8
9 #ifndef AUDIO_ELEMENT_HH
10 #define AUDIO_ELEMENT_HH
11
12 #include "virtual-methods.hh"
13
14 class Audio_element
15 {
16 public:
17   Audio_element ();
18   virtual ~Audio_element ();
19   VIRTUAL_COPY_CONSTRUCTOR(Audio_element,Audio_element);
20   virtual char const *name () const;
21 protected:
22 };
23
24 #endif // AUDIO_ELEMENT_HH