]> git.donarmstrong.com Git - lilypond.git/blob - lily/include/audio-element.hh
* Another grand 2003 update.
[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--2003 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
22
23
24   // should we use a scm list?
25   bool grace_b_;
26   
27 protected:
28 };
29
30 #endif // AUDIO_ELEMENT_HH