]> git.donarmstrong.com Git - lilypond.git/blob - lily/include/book.hh
062658420a602a5da32a79e3797acdc1794743ff
[lilypond.git] / lily / include / book.hh
1 /*
2   book.hh -- declare Book
3
4   source file of the GNU LilyPond music typesetter
5
6   (c) 1997--2004 Han-Wen Nienhuys <hanwen@cs.uu.nl>
7 */
8
9 #ifndef BOOK_HH
10 #define BOOK_HH
11
12 #include "input.hh"
13 #include "lily-proto.hh"
14 #include "parray.hh"
15 #include "smobs.hh"
16 #include "object-key.hh"
17 #include "string.hh"
18
19 class Book : public Input
20 {
21   DECLARE_SMOBS (Book, foo);
22 public:
23   String user_key_;
24   
25   SCM header_;
26   Output_def *paper_;
27
28   void add_score (Score*);
29   Link_array<Score> scores_;
30   Book ();
31   void set_keys ();
32   Paper_book* process (String, Output_def*);
33 };
34 DECLARE_UNSMOB (Book, book);
35
36 #endif /* BOOK_HH */