]> git.donarmstrong.com Git - lilypond.git/blob - lily/include/book.hh
* lily/input-file-results.cc (do_one_file): Remove Paper_book hack.
[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
15 #include "parray.hh"
16 #include "smobs.hh"
17
18 class Book : public Input
19 {
20   DECLARE_SMOBS (Book, foo);
21
22 public:
23   SCM header_;
24   Link_array<Score> scores_;
25     
26   Book ();
27   Book (Book const&);
28   void process (String outname, Music_output_def*, SCM header);
29 };
30 DECLARE_UNSMOB (Book,book); 
31
32 #endif /* BOOK_HH */