Annotation of libwww/Library/src/WWWHTML.html, revision 2.11

2.1       frystyk     1: <HTML>
                      2: <HEAD>
2.8       frystyk     3:   <TITLE>W3C Sample Code Library libwww HTML PARSER</TITLE>
2.1       frystyk     4: </HEAD>
                      5: <BODY>
2.8       frystyk     6: <H1>
                      7:   Declaration of W3C Sample Code HTML MODULE
                      8: </H1>
2.1       frystyk     9: <PRE>
                     10: /*
                     11: **     (c) COPYRIGHT MIT 1995.
                     12: **     Please first read the full copyright statement in the file COPYRIGH.
                     13: */
                     14: </PRE>
2.8       frystyk    15: <P>
                     16: This is the include file for the basic HTML module that can be used together
                     17: with libwww. It contains all HTML specific modules which are required to
                     18: compile and use the <A HREF="HTML.html">default libwww HTML parser</A>
2.1       frystyk    19: <PRE>
                     20: #ifndef WWWHTML_H
                     21: #define WWWHTML_H
                     22: </PRE>
                     23: <PRE>
                     24: #ifdef __cplusplus
                     25: extern "C" { 
                     26: #endif
                     27: </PRE>
2.8       frystyk    28: <H2>
                     29:   System dependencies
                     30: </H2>
                     31: <P>
2.7       frystyk    32: The <A HREF="wwwsys.html">wwwsys.h</A> file includes system-specific include
2.8       frystyk    33: files and flags for I/O to network and disk. The only reason for this file
                     34: is that the Internet world is more complicated than Posix and ANSI.
2.1       frystyk    35: <PRE>
2.7       frystyk    36: #include "wwwsys.h"
2.5       frystyk    37: </PRE>
2.8       frystyk    38: <H2>
                     39:   Library Includes
                     40: </H2>
2.5       frystyk    41: <PRE>
2.1       frystyk    42: #include "HTMLPDTD.h"
                     43: #include "SGML.h"
                     44: #include "HTMLGen.h"
                     45: #include "HTTeXGen.h"
2.10      frystyk    46: #include "HTPlain.h"
                     47: #include "HTML.h"
                     48: #include "HText.h"
                     49: #include "HTHInit.h"
                     50: #include "HTStyle.h"
2.1       frystyk    51: </PRE>
2.8       frystyk    52: <P>
2.1       frystyk    53: End of HTML module
                     54: <PRE>
                     55: #ifdef __cplusplus
                     56: } /* end extern C definitions */
                     57: #endif
                     58: 
                     59: #endif
                     60: </PRE>
2.8       frystyk    61: <P>
                     62:   <HR>
2.4       frystyk    63: <ADDRESS>
2.11    ! frystyk    64:   @(#) $Id: WWWHTML.html,v 2.10 1999/02/07 18:24:19 frystyk Exp $
2.4       frystyk    65: </ADDRESS>
2.8       frystyk    66: </BODY></HTML>

Webmaster