]> git.donarmstrong.com Git - lilypond.git/blob - lily/include/all-fonts.hh
da9f91e48cb60d2b8eb554592e4fa8586e637e5b
[lilypond.git] / lily / include / all-fonts.hh
1 /*   
2   all-fonts.hh -- declare All_font_metrics
3   
4   source file of the GNU LilyPond music typesetter
5   
6   (c) 1998 Han-Wen Nienhuys <hanwen@cs.uu.nl>
7   
8  */
9
10 #ifndef ALL_FONTS_HH
11 #define ALL_FONTS_HH
12
13 #include "dictionary.hh"
14 #include "file-path.hh"
15 #include "lily-proto.hh"
16
17 /**
18    Interface to all .afm files living in the filesystem.
19  */
20 class All_font_metrics
21 {
22   Dictionary<Adobe_font_metric*> afm_p_dict_;
23   File_path search_path_;
24 public:
25   
26   Adobe_font_metric *find_font (String name);
27   All_font_metrics (String search_path);
28 };
29
30
31
32
33 #endif /* ALL_FONTS_HH */
34