]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/include/music-output.hh
* Another grand 2003 update.
[lilypond.git] / lily / include / music-output.hh
index 04a16e5d8d998466b676b81f60ba74f1bec1b5c8..ace7b0dae842acf438277f0e1570370d67f041fb 100644 (file)
@@ -3,7 +3,7 @@
 
   source file of the GNU LilyPond music typesetter
 
-  (c)  1997--1998 Han-Wen Nienhuys <hanwen@cs.uu.nl>
+  (c)  1997--2003 Han-Wen Nienhuys <hanwen@cs.uu.nl>
 */
 
 
 
 #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:
-  Header * 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;
   }
        
 };