]> git.donarmstrong.com Git - lilypond.git/blob - lily/include/audio-element.hh
dac7bddd549513ee2b5c13a0842083d141aea767
[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--2007 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
20   DECLARE_CLASSNAME(Audio_element);
21   virtual char const *name () const;
22 };
23
24 #endif // AUDIO_ELEMENT_HH