]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/include/book.hh
Fix some bugs in the dynamic engraver and PostScript backend
[lilypond.git] / lily / include / book.hh
index c9191e63f9d0bb61c9e253f9418bf8cef91cb24f..9ef2ca21301db146dba7f373061bbaec98747f08 100644 (file)
@@ -3,7 +3,7 @@
 
   source file of the GNU LilyPond music typesetter
 
-  (c) 1997--2004 Han-Wen Nienhuys <hanwen@cs.uu.nl>
+  (c) 1997--2006 Han-Wen Nienhuys <hanwen@xs4all.nl>
 */
 
 #ifndef BOOK_HH
 
 #include "input.hh"
 #include "lily-proto.hh"
-
-#include "parray.hh"
-#include "smobs.hh"
+#include "std-vector.hh"
+#include "object-key.hh"
+#include "std-string.hh"
 
 class Book : public Input
 {
   DECLARE_SMOBS (Book, foo);
 
 public:
+  string user_key_;
   SCM header_;
-  Link_array<Score> scores_;
-    
-  Book ();
+  Output_def *paper_;
+  SCM scores_;
 
-  void process (String outname, Music_output_def*, SCM header);
-  SCM to_stencil (Music_output_def*, SCM header);
+  Book *clone () const;
+  Book ();
+  void add_score (SCM);
+  Paper_book *process (Output_def *def_paper,
+                      Output_def *def_layout);
+  void set_keys ();
 };
-DECLARE_UNSMOB (Book,book); 
+
+DECLARE_UNSMOB (Book, book);
 
 #endif /* BOOK_HH */