]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/include/paper-book.hh
* lily/sequential-music.cc: remove file.
[lilypond.git] / lily / include / paper-book.hh
index 3654b87107b2e82f44cdad0db8c7af4b1ec1710a..e5302c298b6c84fa2c47e9ec5291765ef6eb9bd6 100644 (file)
@@ -8,17 +8,19 @@
 #ifndef PAPER_BOOK_HH
 #define PAPER_BOOK_HH
 
-#include "lily-guile.hh"
 #include "parray.hh"
 #include "protected-scm.hh"
 #include "smobs.hh"
 
-struct Score_lines
+class Output_def;
+class Stencil;
+
+struct Score_systems
 {
-  SCM lines_;
+  SCM systems_;
   SCM header_;
 
-  Score_lines () ;
+  Score_systems () ;
   void gc_mark ();
 };
 
@@ -33,21 +35,22 @@ class Paper_book
 {
   DECLARE_SMOBS (Paper_book, );
 
-  SCM lines_;
+  SCM systems_;
   SCM pages_;
 public:
   SCM header_;
-  Array<Score_lines> score_lines_;
-  Output_def *bookpaper_;
+  Array<Score_systems> score_systems_;
+  Output_def *paper_;
   
   Paper_book ();
 
-  SCM lines ();
+  SCM systems ();
   SCM pages ();
   Stencil book_title ();
   Stencil score_title (int);
   void classic_output (String);
   void output (String);
+  void post_processing (SCM, SCM);
 };
 
 DECLARE_UNSMOB (Paper_book, paper_book)