]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/include/music-output.hh
Run `make grand-replace'.
[lilypond.git] / lily / include / music-output.hh
index 6f2807ff2cb5983806ced1cde181c2e8937ffd8e..7200e8725a4e1f7f99934a33f99b33ce0056a1e8 100644 (file)
@@ -3,33 +3,31 @@
 
   source file of the GNU LilyPond music typesetter
 
-  (c)  1997--1998 Han-Wen Nienhuys <hanwen@stack.nl>
+  (c) 1997--2008 Han-Wen Nienhuys <hanwen@xs4all.nl>
 */
 
+#ifndef MUSIC_OUTPUT_HH
+#define MUSIC_OUTPUT_HH
 
-#ifndef Music_output_HH
-#define Music_output_HH
-
-#include "string.hh"
+#include "std-string.hh"
 #include "lily-proto.hh"
+#include "protected-scm.hh"
+#include "smobs.hh"
+#include "virtual-methods.hh"
 
-/**
-  Output something that was defined in a mudela file. 
- */
-class Music_output 
+class Music_output
 {
-public:
-  Header * header_l_;
-  String default_out_str_;
-  String origin_str_;
-  int errorlevel_i_;
+  DECLARE_SMOBS (Music_output);
+  DECLARE_CLASSNAME(Music_output);
+protected:
+  Music_output ();
 
-  virtual void process() {} 
-  virtual ~Music_output (){}
-  Music_output() 
-  {
-    errorlevel_i_ = 0;
-  }
-       
+public:
+  virtual void derived_mark () const;
+  virtual void process ();
 };
-#endif // Music_output_HH
+
+DECLARE_UNSMOB (Music_output, music_output);
+Paper_score *unsmob_paper_score (SCM);
+Performance *unsmob_performance (SCM);
+#endif /* MUSIC_OUTPUT_HH */