]> git.donarmstrong.com Git - lilypond.git/blob - lily/include/book.hh
* lily/paper-line.cc (Paper_line): don't store list of stencils,
[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   Link_array<Score> scores_;
24     
25   Book ();
26
27   void process (String outname, Music_output_def*, SCM header);
28   SCM to_stencil (Music_output_def*, SCM header);
29 };
30 DECLARE_UNSMOB (Book,book); 
31
32 #endif /* BOOK_HH */