]> git.donarmstrong.com Git - lilypond.git/blob - lily/include/audio-element.hh
release: 0.1.61
[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--1998 Han-Wen Nienhuys <hanwen@stack.nl>
7 */
8
9
10 #ifndef AUDIO_ELEMENT_HH
11 #define AUDIO_ELEMENT_HH
12
13 #include "virtual-methods.hh"
14
15 struct Audio_element {
16   void print ()const;
17   
18   virtual ~Audio_element();
19   DECLARE_MY_RUNTIME_TYPEINFO;
20 protected:
21   virtual void do_print () const;
22 };
23 #endif // AUDIO_ELEMENT_HH