]> git.donarmstrong.com Git - lilypond.git/blob - lily/include/audio-element.hh
release: 1.1.54
[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--1999 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
21   void print () const;
22
23   // should we use a scm list?
24   bool grace_b_;
25   
26 protected:
27   virtual void do_print () const;
28 };
29
30 #endif // AUDIO_ELEMENT_HH