]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/include/book.hh
* buildscripts/lilypond-words.py (F):
[lilypond.git] / lily / include / book.hh
index 0c5e46863bfa304b9b184551e0d69eabecc21902..88b9207c3e23730005826f23e7365979bcad9f7f 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--2005 Han-Wen Nienhuys <hanwen@cs.uu.nl>
 */
 
 #ifndef BOOK_HH
 #include "input.hh"
 #include "lily-proto.hh"
 #include "parray.hh"
-#include "smobs.hh"
+#include "object-key.hh"
+#include "string.hh"
 
 class Book : public Input
 {
   DECLARE_SMOBS (Book, foo);
 
 public:
+  String user_key_;
   SCM header_;
-  Book_output_def *bookpaper_;
-  
-  Link_array<Score> scores_;
-  Book ();
+  Output_def *paper_;
+  SCM scores_;
 
-  void process (String outname, Output_def*, SCM header);
-  SCM to_stencil (Output_def*, SCM header);
+  Book ();
+  void add_score (SCM);
+  Paper_book *process (String, Output_def *);
+  void set_keys ();
 };
+
 DECLARE_UNSMOB (Book, book);
 
 #endif /* BOOK_HH */