]> git.donarmstrong.com Git - lilypond.git/blob - lily/include/audio-element.hh
2ebcee4291ac6fbad62ea79594ae9f1a877c4080
[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--2005 Han-Wen Nienhuys <hanwen@cs.uu.nl>
7 */
8
9
10 #ifndef AUDIO_ELEMENT_HH
11 #define AUDIO_ELEMENT_HH
12
13 #include "virtual-methods.hh"
14
15 class Audio_element
16 {
17 public:
18   Audio_element ();
19   virtual ~Audio_element ();
20   virtual const char* name () const;
21 protected:
22 };
23
24 #endif // AUDIO_ELEMENT_HH