]> git.donarmstrong.com Git - lilypond.git/blob - lily/include/music-output.hh
*** empty log message ***
[lilypond.git] / lily / include / music-output.hh
1 /*
2   music-output.hh -- declare Music_output
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 Music_output_HH
11 #define Music_output_HH
12
13 #include "string.hh"
14 #include "lily-proto.hh"
15 #include "protected-scm.hh"
16
17 /**
18   Output something that was defined in a lilypond file. 
19  */
20 class Music_output 
21 {
22 public:
23   Protected_scm header_;
24
25   virtual void process (String) {} 
26   virtual ~Music_output (){}
27   Music_output () 
28   {
29   }
30        
31 };
32 #endif // Music_output_HH