]> git.donarmstrong.com Git - lilypond.git/blob - lily/include/book.hh
(ly_bookpaper_fonts): move from Paperdef
[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
17 class Book : public Input
18 {
19   DECLARE_SMOBS (Book, foo);
20
21 public:
22   SCM header_;
23   Book_paper_def *bookpaper_;
24   
25   Link_array<Score> scores_;
26   Book ();
27
28   void process (String outname, Music_output_def*, SCM header);
29   SCM to_stencil (Music_output_def*, SCM header);
30 };
31 DECLARE_UNSMOB (Book,book); 
32
33 #endif /* BOOK_HH */