]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/include/score.hh
Imported sources
[lilypond.git] / lily / include / score.hh
index 91db1701874e22bcf818cd09b4ca260f3517c121..4a03be69322781d48901b7400b59f0f7a133fea4 100644 (file)
@@ -3,7 +3,7 @@
 
   source file of the GNU LilyPond music typesetter
 
-  (c)  1997--2002 Han-Wen Nienhuys <hanwen@cs.uu.nl>
+  (c) 1997--2004 Han-Wen Nienhuys <hanwen@cs.uu.nl>
 */
 
 
 #include "parray.hh"
 #include "smobs.hh"
 
-/// the total music def of one movement
-class Score: public Input {
+class Score : public Input
+{
 public:
-  /// paper_, staves_ and commands_ form the problem definition.
-  Link_array<Music_output_def> def_p_arr_;
+  Link_array<Music_output_def> defs_;
   SCM music_;
-  Scheme_hash_table * header_p_;
-
-  int errorlevel_i_;
+  SCM header_;
     
-  /// construction
   Score ();
   Score (Score const&);
-
-
-  void process ();
-  void add_output (Music_output_def *def_p);
   DECLARE_SMOBS (Score,foo);
 private:
-  void run_translator (Music_output_def*);
 };
 DECLARE_UNSMOB(Score,score); 
+
+
+SCM ly_run_translator (SCM, SCM);
+SCM ly_render_output (SCM, SCM, SCM);
+void default_rendering (SCM,SCM,SCM,SCM);
 #endif