]> git.donarmstrong.com Git - lilypond.git/blob - lily/include/paper-book.hh
* lily/paper-outputter.cc (output_expr):
[lilypond.git] / lily / include / paper-book.hh
1 /*
2   paper-book.hh -- declare Paper_book
3
4   source file of the GNU LilyPond music typesetter
5
6   (c) 2004  Jan Nieuwenhuizen <janneke@gnu.org>
7 */
8
9 #ifndef PAPER_BOOK_HH
10 #define PAPER_BOOK_HH
11
12 // #define PAGE_LAYOUT 1
13
14 #include "parray.hh"
15 class Page;
16
17 class Paper_book
18 {
19 public:
20   Link_array<Paper_score> paper_scores_;
21   Paper_book ();
22
23   Link_array<Page> *get_pages ();
24   void output ();
25 };
26
27 #endif /* PAPER_BOOK_HH */
28