]> git.donarmstrong.com Git - lilypond.git/blob - lily/include/music-output.hh
* Another grand 2003 update.
[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   String default_out_string_;
25   String origin_string_;
26   int errorlevel_;
27
28   virtual void process () {} 
29   virtual ~Music_output (){}
30   Music_output () 
31   {
32     errorlevel_ = 0;
33   }
34        
35 };
36 #endif // Music_output_HH