]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/include/paper-book.hh
skyline cleanup, and from_points, to_points functionality
[lilypond.git] / lily / include / paper-book.hh
index 7373e9a0d7594ec50f2209a75ad958308e7854f2..16b349e0250555143da313646e395f08c510707f 100644 (file)
@@ -8,12 +8,9 @@
 #ifndef PAPER_BOOK_HH
 #define PAPER_BOOK_HH
 
-#include "parray.hh"
-#include "protected-scm.hh"
+#include "std-vector.hh"
 #include "smobs.hh"
-
-class Output_def;
-class Stencil;
+#include "lily-proto.hh"
 
 /** Paper_book collects headers, systems (Paper_system) and texts, and
     exports them to the output backend, either as systems or as
@@ -21,13 +18,15 @@ class Stencil;
 
 class Paper_book
 {
-  DECLARE_SMOBS (Paper_book,);
+  DECLARE_SMOBS (Paper_book);
 
   SCM systems_;
   SCM pages_;
   SCM performances_;
 
   void add_score_title (SCM);
+  SCM get_score_title (SCM);
+  
 public:
   SCM header_;
   SCM header_0_;
@@ -42,8 +41,12 @@ public:
   SCM performances () const;
   SCM systems ();
   SCM pages ();
+  SCM get_system_specs ();
+
+
   Stencil book_title ();
   Stencil score_title (SCM);
+  
   void classic_output (SCM output_channel);
   void output (SCM output_channel);
 };