]> git.donarmstrong.com Git - lilypond.git/blob - lily/include/book.hh
* configure.in: Test for and accept lmodern if EC fonts not found.
[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 "object-key.hh"
16 #include "string.hh"
17
18 class Book : public Input
19 {
20   DECLARE_SMOBS (Book, foo);
21 public:
22   String user_key_;
23   
24   SCM header_;
25   Output_def *paper_;
26
27   void add_score (Score*);
28   Link_array<Score> scores_;
29   Book ();
30   void set_keys ();
31   Paper_book* process (String, Output_def*);
32 };
33 DECLARE_UNSMOB (Book, book);
34
35 #endif /* BOOK_HH */