2 paper-book.hh -- declare Paper_book
4 source file of the GNU LilyPond music typesetter
6 (c) 2004--2006 Jan Nieuwenhuizen <janneke@gnu.org>
11 #include "std-vector.hh"
13 #include "lily-proto.hh"
15 /** Paper_book collects headers, systems (Paper_system) and texts, and
16 exports them to the output backend, either as systems or as
17 completely formatted pages. */
21 DECLARE_SMOBS (Paper_book);
27 void add_score_title (SCM);
28 SCM get_score_title (SCM);
39 void add_performance (SCM);
41 SCM performances () const;
44 SCM get_system_specs ();
47 Stencil book_title ();
48 Stencil score_title (SCM);
50 void classic_output (SCM output_channel);
51 void output (SCM output_channel);
54 DECLARE_UNSMOB (Paper_book, paper_book)
56 #endif /* PAPER_BOOK_HH */