Annotation of libwww/Library/src/WWWLib.html, revision 2.2.2.1

2.1       frystyk     1: <HTML>
                      2: <HEAD>
                      3: <TITLE>Global Include File for Library of Common Code</TITLE>
                      4: <NEXTID N="z11">
                      5: </HEAD>
                      6: <BODY>
                      7: 
                      8: <H1>Global Include File for Library of Common Code</H1>
                      9: 
                     10: <PRE>
                     11: /*
                     12: **     (c) COPYRIGHT CERN 1994.
                     13: **     Please first read the full copyright statement in the file COPYRIGH.
                     14: */
                     15: </PRE>
                     16: 
                     17: This is the main include file necessary in order to use the Library of
                     18: Common Code. Currently the file only consists of well-known Library
                     19: include files, but the goal is to define a nice API in this file, so
                     20: that all external functionality can be reached through this one.
                     21: 
                     22: <PRE>
                     23: #ifndef WWWLIB_H
                     24: #define WWWLIB_H
                     25: 
2.2.2.1 ! cbrooks    26: #ifdef __cplusplus
        !            27: extern "C" { 
        !            28: #endif
        !            29: 
2.1       frystyk    30: /* General Utilities */
                     31: #include "tcp.h"
                     32: #include "HTUtils.h"                   /* Macros and other stuff */
                     33: #include "HTString.h"
                     34: #include "HTList.h"                    /* Memory management for lists  */
                     35: #include "HTChunk.h"                   /* Memory management for chunks */
                     36: 
                     37: /* Format Management, and Access functions for loading a URL etc. */
                     38: #include "HTFormat.h"                  /* Stream Stack etc. */
                     39: #include "HTAccess.h"                  /* Document access network code */
                     40: 
                     41: /* URLs and Anchors - Internal representation of URLs */
                     42: #include "HTAnchor.h"                  /* Anchor class Definition */
                     43: #include "HTParse.h"                   /* Parse URLs */
                     44: 
                     45: /* History Management */
                     46: #include "HTHist.h"                    /* Navigational aids */
                     47: 
                     48: /* Presentation of graphical objects and other streams */
                     49: #include "HTML.h"                      /* For HTML parser */
                     50: #include "HTMLGen.h"                   /* For reformatting HTML */
2.2.2.1 ! cbrooks    51: #include "HTFWrite.h"                  /* For non-interactive output */
2.1       frystyk    52: 
                     53: /* Graphic Object and Styles */
                     54: #include "HText.h"
                     55: #include "HTStyle.h"
                     56: 
                     57: /* Local file access */
                     58: #include "HTFile.h"                    /* For Dir access flags */
                     59: 
                     60: /* For TCP relevant information (mail address etc.) */
                     61: #include "HTTCP.h"
                     62: 
                     63: /* Management of Rule Files for configuring the application */
                     64: #include "HTRules.h"
                     65: 
                     66: /* Event loop for multithreaded functionality */
                     67: #include "HTEvent.h"
                     68: 
                     69: /* Messages and User prompts */
                     70: #include "HTAlert.h"
                     71: 
                     72: /* TEMPORARY STUFF */
                     73: #include "HTTP.h"
2.2.2.1 ! cbrooks    74: 
        !            75: #ifdef __cplusplus
        !            76: } /* end extern C definitions */
        !            77: #endif
2.1       frystyk    78: 
                     79: #endif
                     80: </PRE>
                     81: 
                     82: End of WWWLib API definition
                     83: 
                     84: </BODY>
                     85: </HTML>

Webmaster