]> git.donarmstrong.com Git - lilypond.git/blob - lily/include/book.hh
Fix some bugs in the dynamic engraver and PostScript backend
[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--2006 Han-Wen Nienhuys <hanwen@xs4all.nl>
7 */
8
9 #ifndef BOOK_HH
10 #define BOOK_HH
11
12 #include "input.hh"
13 #include "lily-proto.hh"
14 #include "std-vector.hh"
15 #include "object-key.hh"
16 #include "std-string.hh"
17
18 class Book : public Input
19 {
20   DECLARE_SMOBS (Book, foo);
21
22 public:
23   string user_key_;
24   SCM header_;
25   Output_def *paper_;
26   SCM scores_;
27
28   Book *clone () const;
29   Book ();
30   void add_score (SCM);
31   Paper_book *process (Output_def *def_paper,
32                        Output_def *def_layout);
33   void set_keys ();
34 };
35
36 DECLARE_UNSMOB (Book, book);
37
38 #endif /* BOOK_HH */