]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/include/music-output.hh
Imported sources
[lilypond.git] / lily / include / music-output.hh
index 8c65ab21f6606b9e28784ac49099ebf9cf199a72..d1423852b1359f1f8523049c178bf3fbe84a82a7 100644 (file)
@@ -3,7 +3,7 @@
 
   source file of the GNU LilyPond music typesetter
 
-  (c)  1997--1999 Han-Wen Nienhuys <hanwen@cs.uu.nl>
+  (c) 1997--2004 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:
-  Scope * header_l_;
-  String default_out_str_;
-  String origin_str_;
-  int errorlevel_i_;
+  Protected_scm header_;
 
-  virtual void process() {} 
+  virtual void process (String) {} 
   virtual ~Music_output (){}
-  Music_output() 
+  Music_output () 
   {
-    errorlevel_i_ = 0;
   }
        
 };