lilypond-1.5.10
[lilypond.git] / lily / include / music-output.hh
blob604ff11ce7e7d99ec9cac2ea16ccaee062416b98
1 /*
2 music-output.hh -- declare Music_output
4 source file of the GNU LilyPond music typesetter
6 (c) 1997--2001 Han-Wen Nienhuys <hanwen@cs.uu.nl>
7 */
10 #ifndef Music_output_HH
11 #define Music_output_HH
13 #include "string.hh"
14 #include "lily-proto.hh"
16 /**
17 Output something that was defined in a lilypond file.
19 class Music_output
21 public:
22 Scope * header_l_;
23 String default_out_str_;
24 String origin_str_;
25 int errorlevel_i_;
27 virtual void process () {}
28 virtual ~Music_output (){}
29 Music_output ()
31 errorlevel_i_ = 0;
35 #endif // Music_output_HH