]> git.donarmstrong.com Git - lilypond.git/blob - lily/include/word-wrap.hh
6f16af30c8883ae53b417701a9adf5995b6c4b05
[lilypond.git] / lily / include / word-wrap.hh
1 /*
2   word-wrap.hh -- declare Word_wrap
3
4   source file of the GNU LilyPond music typesetter
5
6   (c) 1997 Han-Wen Nienhuys <hanwen@stack.nl>
7 */
8
9
10 #ifndef WORD_WRAP_HH
11 #define WORD_WRAP_HH
12
13 #include "break.hh"
14
15 /// wordwrap type algorithm: move to next line if current is optimal.
16 struct Word_wrap : Break_algorithm {
17     virtual Array<Col_hpositions> do_solve()const;
18     Word_wrap();
19 };
20
21 #endif // WORD_WRAP_HH