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

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: 
                     26: /* General Utilities */
                     27: #include "tcp.h"
                     28: #include "HTUtils.h"                   /* Macros and other stuff */
                     29: #include "HTString.h"
                     30: #include "HTList.h"                    /* Memory management for lists  */
                     31: #include "HTChunk.h"                   /* Memory management for chunks */
                     32: 
                     33: /* Format Management, and Access functions for loading a URL etc. */
                     34: #include "HTFormat.h"                  /* Stream Stack etc. */
                     35: #include "HTAccess.h"                  /* Document access network code */
2.2     ! frystyk    36: #include "HTMulti.h"
2.1       frystyk    37: 
                     38: /* URLs and Anchors - Internal representation of URLs */
                     39: #include "HTAnchor.h"                  /* Anchor class Definition */
                     40: #include "HTParse.h"                   /* Parse URLs */
                     41: 
2.2     ! frystyk    42: /* Access Authenticatio */
        !            43: #include "HTAAUtil.h"
        !            44: #include "HTUU.h"
        !            45: 
2.1       frystyk    46: /* History Management */
                     47: #include "HTHist.h"                    /* Navigational aids */
                     48: 
                     49: /* Presentation of graphical objects and other streams */
                     50: #include "HTML.h"                      /* For HTML parser */
                     51: #include "HTMLGen.h"                   /* For reformatting HTML */
2.2     ! frystyk    52: #include "HTWriter.h"
        !            53: #include "HTFWrite.h"
        !            54: 
        !            55: /* Directory Listings */
        !            56: #include "HTIcons.h"
        !            57: #include "HTDirBrw.h"
        !            58: #include "HTDescpt.h"
2.1       frystyk    59: 
                     60: /* Graphic Object and Styles */
                     61: #include "HText.h"
                     62: #include "HTStyle.h"
                     63: 
                     64: /* Local file access */
                     65: #include "HTFile.h"                    /* For Dir access flags */
                     66: 
                     67: /* For TCP relevant information (mail address etc.) */
                     68: #include "HTTCP.h"
                     69: 
                     70: /* Management of Rule Files for configuring the application */
                     71: #include "HTRules.h"
                     72: 
                     73: /* Event loop for multithreaded functionality */
                     74: #include "HTEvent.h"
                     75: 
                     76: /* Messages and User prompts */
                     77: #include "HTAlert.h"
2.2     ! frystyk    78: #include "HTError.h"
2.1       frystyk    79: 
                     80: /* TEMPORARY STUFF */
                     81: #include "HTTP.h"
                     82: 
                     83: #endif
                     84: </PRE>
                     85: 
                     86: End of WWWLib API definition
                     87: 
                     88: </BODY>
                     89: </HTML>

Webmaster