File: HTTeXGen.h

package info (click to toggle)
cern-httpd 3.0A-1
  • links: PTS
  • area: main
  • in suites: hamm
  • size: 5,392 kB
  • ctags: 6,554
  • sloc: ansic: 37,902; makefile: 1,746; perl: 535; csh: 167; sh: 143
file content (32 lines) | stat: -rw-r--r-- 822 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
/*                                                                           Latex Generation
                                     LATEX GENERATOR
                                             
   This module converts a structured stream from HTML into LaTeX format. The conversion is
   mostly a 1:1 translation, but as the LaTeX compiler is much more strict than a typical
   HTML converter some typographical constraints are put on the translation. Only text is
   translated for the moment. The module is a part of the CERN Common WWW Library.
   
 */

#ifndef HTTEXGEN_H
#define HTTEXGEN_H

#include "HTML.h"
#include "HTStream.h"
/*

Conversion Module

   The conversion module is defined as
   
 */

extern HTStructured * HTTeXGenerator PARAMS((HTStream * output));
/*

 */

#endif
/*

   End of module HTTeXGen  */