~ubuntu-branches/ubuntu/edgy/lynx/edgy

« back to all changes in this revision

Viewing changes to WWW/Library/Implementation/HTMLGen.h

  • Committer: Bazaar Package Importer
  • Author(s): Martin Pitt
  • Date: 2004-09-16 12:14:10 UTC
  • Revision ID: james.westby@ubuntu.com-20040916121410-cz1gu92c4nqfeyrg
Tags: upstream-2.8.5
ImportĀ upstreamĀ versionĀ 2.8.5

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*                  /Net/dxcern/userd/timbl/hypertext/WWW/Library/Implementation/HTMLGen.html
 
2
                                      HTML GENERATOR
 
3
                                             
 
4
   This module converts structed stream into stream.  That is, given a stream to write to,
 
5
   it will give you a structured stream to
 
6
   
 
7
 */
 
8
#ifndef HTMLGEN_H
 
9
#define HTMLGEN_H
 
10
 
 
11
#include <HTML.h>
 
12
#include <HTStream.h>
 
13
 
 
14
/* Subclass:
 
15
*/
 
16
/* extern CONST HTStructuredClass HTMLGeneration; */
 
17
 
 
18
/* Special Creation:
 
19
*/
 
20
extern HTStructured * HTMLGenerator PARAMS((HTStream * output));
 
21
 
 
22
extern HTStream * HTPlainToHTML PARAMS((
 
23
        HTPresentation *        pres,
 
24
        HTParentAnchor *        anchor,
 
25
        HTStream *              sink));
 
26
 
 
27
#endif /* HTMLGEN_H */