]> git.donarmstrong.com Git - lilypond.git/blob - lily/include/paper-line.hh
* ly/declarations-init.ly (paper): Define page-breaking.
[lilypond.git] / lily / include / paper-line.hh
1 /*
2   paper-line.hh -- declare Paper_line
3
4   source file of the GNU LilyPond music typesetter
5
6   (c) 1997--2004 Han-Wen Nienhuys <hanwen@cs.uu.nl>
7 */
8 #ifndef PAPER_LINE_HH
9 #define PAPER_LINE_HH
10
11 #include "lily-proto.hh"
12 #include "smobs.hh"
13 #include "offset.hh"
14
15 class Paper_line
16 {
17   DECLARE_SMOBS (Paper_line,)
18   SCM stencils_;
19   Offset dim_;
20   bool is_title_;
21   
22 public:
23   Paper_line (Offset, SCM, bool = false);
24
25   int number_;
26   Offset dim () const;
27   SCM stencils () const;
28   bool is_title () const;
29 };
30
31 DECLARE_UNSMOB (Paper_line, paper_line);
32
33 #endif /* PAPER_LINE_HH */