]> git.donarmstrong.com Git - lilypond.git/blob - lily/include/music-output.hh
release: 1.3.107
[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--2000 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
16 /**
17   Output something that was defined in a lilypond file. 
18  */
19 class Music_output 
20 {
21 public:
22   Scope * header_l_;
23   String default_out_str_;
24   String origin_str_;
25   int errorlevel_i_;
26
27   virtual void process() {} 
28   virtual ~Music_output (){}
29   Music_output() 
30   {
31     errorlevel_i_ = 0;
32   }
33        
34 };
35 #endif // Music_output_HH