X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=lily%2Finclude%2Fmusic-output.hh;h=ace7b0dae842acf438277f0e1570370d67f041fb;hb=74d6716dba8eb960e7d973b5473fa07758304328;hp=cf17d6a6415ccc63c30078f104f69e951087adfc;hpb=59ed0cee2aae58a3f0483f21261c68aee406fa10;p=lilypond.git diff --git a/lily/include/music-output.hh b/lily/include/music-output.hh index cf17d6a641..ace7b0dae8 100644 --- a/lily/include/music-output.hh +++ b/lily/include/music-output.hh @@ -3,7 +3,7 @@ source file of the GNU LilyPond music typesetter - (c) 1997--1998 Han-Wen Nienhuys + (c) 1997--2003 Han-Wen Nienhuys */ @@ -12,23 +12,24 @@ #include "string.hh" #include "lily-proto.hh" +#include "protected-scm.hh" /** - Output something that was defined in a mudela file. + Output something that was defined in a lilypond file. */ class Music_output { public: - Scope * header_l_; - String default_out_str_; - String origin_str_; - int errorlevel_i_; + Protected_scm header_; + String default_out_string_; + String origin_string_; + int errorlevel_; - virtual void process() {} + virtual void process () {} virtual ~Music_output (){} - Music_output() + Music_output () { - errorlevel_i_ = 0; + errorlevel_ = 0; } };