]> git.donarmstrong.com Git - lilypond.git/blob - lily/include/book.hh
* lily/book.cc:
[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--2005 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 "object-key.hh"
16 #include "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 ();
29   void add_score (SCM);
30   Paper_book* process (String, Output_def*);
31   void set_keys ();
32 };
33
34 DECLARE_UNSMOB (Book, book);
35
36 #endif /* BOOK_HH */