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