1 
2 /******************************************************************************
3 * MODULE     : load_tex.hpp
4 * DESCRIPTION: Loading TeX font metrics and glyphs
5 * COPYRIGHT  : (C) 1999  Joris van der Hoeven
6 *******************************************************************************
7 * This software falls under the GNU general public license version 3 or later.
8 * It comes WITHOUT ANY WARRANTY WHATSOEVER. For details, see the file LICENSE
9 * in the root directory or <http://www.gnu.org/licenses/gpl-3.0.html>.
10 ******************************************************************************/
11 
12 #ifndef LOAD_TEX_H
13 #define LOAD_TEX_H
14 #include "load_tfm.hpp"
15 #include "load_pk.hpp"
16 
17 void load_tex (string family, int size, int dpi, int dsize,
18 	       tex_font_metric& tfm, font_glyphs& pk);
19 
20 #endif // defined LOAD_TEX_H
21