]> git.donarmstrong.com Git - lilypond.git/blob - lily/include/font-interface.hh
release commit
[lilypond.git] / lily / include / font-interface.hh
1 /*
2   font-interface.hh -- declare Font_interface
3
4   source file of the GNU LilyPond music typesetter
5
6   (c) 2000--2005 Han-Wen Nienhuys <hanwen@xs4all.nl>
7 */
8
9 #ifndef FONT_INTERFACE_HH
10 #define FONT_INTERFACE_HH
11
12 #include "font-metric.hh"
13
14 struct Font_interface
15 {
16   static SCM text_font_alist_chain (Grob *);
17   static SCM music_font_alist_chain (Grob *);
18   static Font_metric *get_default_font (Grob *);
19   static bool has_interface (Grob *);
20 };
21
22 #endif /* FONT_INTERFACE_HH */